NewFromEbcdicCodepage (CharacterToUnicodeMap function): Difference between revisions
Jump to navigation
Jump to search
m (→Usage notes) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage subtitle}} | {{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage subtitle}} | ||
This | This method lets you dynamically select a particular codepage for specific data without | ||
having to change your system-wide codepage. | |||
==Syntax== | ==Syntax== | ||
{{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage syntax}} | {{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%outCharacterToUnicodeMap</th><td><var>CharacterToUnicodeMap</var> object</td></tr> | <tr><th>%outCharacterToUnicodeMap</th> | ||
<td>A <var>CharacterToUnicodeMap</var> object.</td></tr> | |||
<tr><th nowrap="true"><var>[%(CharacterToUnicodeMap)]</var></th> | <tr><th nowrap="true"><var>[%(CharacterToUnicodeMap)]</var></th> | ||
<td>The optional class name in parentheses denotes a [[Notation conventions for methods#Constructors|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a virtual constructor.</td></tr> | <td>The optional class name in parentheses denotes a [[Notation conventions for methods#Constructors|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a virtual constructor.</td></tr> | ||
<tr><th>codepageName</th> | <tr><th>codepageName</th> | ||
<td>string</td></tr> | <td>A string that identifies one of the currently supported codepages at your site. You can view (and manage) these codepages with the <var>[[Unicode#The UNICODE command|UNICODE]]</var> command. </td></tr> | ||
</table> | </table> | ||
==Usage notes== | ==Usage notes== | ||
Line 24: | Line 27: | ||
==Examples== | ==Examples== | ||
<p class="code">%tr = newFromEbcdicCodepage('0285EXT') | |||
%u = ('12345678'):characterToUnicode(%tr) </p> | |||
==See also== | ==See also== | ||
{{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage footer}} | {{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage footer}} |
Revision as of 02:28, 30 November 2011
Create CharacterToUnicodeMap object from EBCDIC codepage (CharacterToUnicodeMap class)
[Introduced in Sirius Mods 8.0]
This method lets you dynamically select a particular codepage for specific data without
having to change your system-wide codepage.
Syntax
%characterToUnicodeMap = [%(CharacterToUnicodeMap):]NewFromEbcdicCodepage[( [codepageName])]
Syntax terms
%outCharacterToUnicodeMap | A CharacterToUnicodeMap object. |
---|---|
[%(CharacterToUnicodeMap)] | The optional class name in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a virtual constructor. |
codepageName | A string that identifies one of the currently supported codepages at your site. You can view (and manage) these codepages with the UNICODE command. |
Usage notes
- NewFromEbcdicCodepage is a virtual constructor and as such can be called with no method object, with an explicit class name, or with an object variable, even if that object is null:
%charToUmap = newFromEbcdicCodepage('0037EXT') %charToUmap = %(CharacterToUnicodeMap):newFromEbcdicCodepage('0037EXT') %charToUmap = %charToUmap:newFromEbcdicCodepage('0037EXT')
Examples
%tr = newFromEbcdicCodepage('0285EXT') %u = ('12345678'):characterToUnicode(%tr)