UnicodeToEbcdic (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(22 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Template:Unicode:UnicodeToEbcdic subtitle}}
{{Template:Unicode:UnicodeToEbcdic subtitle}}
[[Category:Unicode methods|UnicodeToEbcdic function]]
<var>UnicodeToEbcdic</var> converts a <var>Unicode</var> string to EBCDIC.  Optionally, untranslatable characters can be represented with XML style hexadecimal character references.
[[Category:Intrinsic methods]]
<!--DPL?? Category:<var>Unicode</var> methods|<var>UnicodeToEbcdic</var> function: <var>String</var> converted from <var>Unicode</var> to EBCDIC-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeToEbcdic</var> (<var>Unicode</var> function): <var>String</var> converted from <var>Unicode</var> to EBCDIC-->
<!--DPL?? Category:<var>System</var> methods|<var>UnicodeToEbcdic</var> (<var>Unicode</var> function): <var>String</var> converted from <var>Unicode</var> to EBCDIC-->


This function converts a <var>Unicode</var> string to EBCDIC.
As an option,
untranslatable characters can be represented with XML style hexadecimal
character references.
The <var>UnicodeToEbcdic</var> function is available as of version 7.3 of the <var class=product>Sirius Mods</var>.
==Syntax==
==Syntax==
{{Template:Unicode:UnicodeToEbcdic syntax}}
{{Template:Unicode:UnicodeToEbcdic syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%ebcdic</i></th>
<tr><th>%string</th>
<td>A string variable to receive the method object string translated to EBCDIC. </td></tr>
<td>A string variable to receive the method object string translated to EBCDIC.</td></tr>
<tr><th><i>unicode</i></th>
 
<td>A <var>Unicode</var> string. </td></tr>
<tr><th>unicode</th>
<tr><th><b>CharacterEncode=</b><i>bool</i></th>
<td>A <var>Unicode</var> string to be translated.</td></tr>
<td>The optional (name required) CharacterEncode argument is a Boolean: <ul> <li>If its value is <tt>False</tt>, the default, an exception is thrown if the input contains any <var>Unicode</var> character not translatable to EBCDIC. <li>If its value is <tt>True</tt>, any <var>Unicode</var> character not translatable to EBCDIC is replaced with the hexadecimal character reference of the character, and the ampersand character is replaced with <tt>&amp;amp;</tt>.
 
  For example, the eight characters <tt>&amp;#x201C;</tt> replace the <var>Unicode</var> "left double-quotation mark." </ul></td></tr>
<tr><th><var>CharacterEncode</var></th>
<td>The optional ([[Notation conventions for methods#Named parameters|name required]]) <var>CharacterEncode</var> argument is a <var>[[Boolean enumeration]]</var>:
<ul>
<li>If its value is <code>False</code>, the default, an exception is thrown if the input contains any Unicode character not translatable to EBCDIC. <li>If its value is <Code>True</code>, any Unicode character not translatable to EBCDIC is replaced with the hexadecimal character reference of the character, and the ampersand character is replaced with <code>&amp;amp;</code>.  For example, the eight characters <code>&amp;#x201C;</code> replace the Unicode left double-quotation mark (<tt>&#X201C;</tt>).  
</ul></td></tr>
</table>
</table>
===Exceptions===


==Exceptions==
This function can throw the following exception:
This function can throw the following exception:
<dl>
<dl>
<dt><var>CharacterTranslationException</var>
<dt><var>[[CharacterTranslationException class|CharacterTranslationException]]</var>
<dd>If the method encounters a translation problem,
<dd>If the method encounters a translation problem, properties of the exception object may indicate the location and type of problem.
properties of the exception object may indicate the location and type of problem.
See [[CharacterTranslationException exception class]].
</dl>
</dl>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>Unless the CharacterEncode argument is used, or
<li>Unless the <var>CharacterEncode</var> argument is used, or you want to <code>Catch</code> a <var>CharacterTranslationException</var>, this function is generally not needed, because a <var>Unicode</var> string is implicitly converted to EBCDIC when used in an EBCDIC context. See the following [[#Examples|example]].
you want to <tt>Catch</tt> a <var>CharacterTranslationException</var>,
<li>The <var>UnicodeToEbcdic</var> function is available as of <var class="product">Sirius Mods</var> Version 7.3.
this function is generally not needed, because a <var>Unicode</var> string is
implicitly converted to EBCDIC when used in an EBCDIC context.
See the example in "Examples," below.
<li>The [[EbcdicToUnicode (String function)|EbcdicToUnicode]] method
converts an EBCDIC string to <var>Unicode</var>.
</ul>
</ul>


==Examples==
==Examples==
The following example shows multiple calls of <var>UnicodeToEbcdic</var>.
The following example shows multiple calls of <var>UnicodeToEbcdic</var>.
The [[U (String function)|U constant function]] is used in the example.
<p class="code">%u Unicode Initial('&amp;#x31;':[[U (String function)|U]])
<pre>
print %u:UnicodeToEbcdic
    %u <var>Unicode</var> Initial('&amp;#x31;':U)
    Print %u:<var>UnicodeToEbcdic</var>


    %u = '1&amp;#x80;2':U
%u = '1&amp;#x80;2':U
    Print %u:<var>UnicodeToEbcdic</var>(CharacterEncode=True)
print %u:UnicodeToEbcdic(CharacterEncode=True)
    Print %u:<var>UnicodeToEbcdic</var>
print %u:UnicodeToEbcdic
</pre>
</p>
The result of the above fragment is:
The result of the above fragment is:
<pre>
<p class="output">1
    1
1&amp;#x0080;2
    1&amp;#x0080;2
CANCELLING REQUEST: MSIR.0751: Class STRING, function
    CANCELLING REQUEST: MSIR.0751: Class STRING, function
UNICODETOEBCDIC: CHARACTER TRANSLATIONEXCEPTION
      UNICODETOEBCDIC: CHARACTER TRANSLATIONEXCEPTION
exception: Unicode character U+0080 without valid
      exception: <var>Unicode</var> character U+0080 without valid
translation to EBCDIC at byte position 5 ...
      translation to EBCDIC at byte position 5 ...
</p>
</pre>
<b>Note:</b> Because of the implicit conversion of <var>Unicode</var> strings (in this case to <var>String</var>), the <code>Print %u:UnicodeToEbcdic</code> statements in the example above could be replaced by
'''Note:'''
<code>Print %u</code> statements and the results would be the same.
Because of the implicit conversion of <var>Unicode</var> strings (in this case to <var>String</var>),
 
<br>
==See also==
the <tt>Print %u:<var>UnicodeToEbcdic</var></tt>  statements in the example above could be
<ul>
<br>
<li>The intrinsic <var>[[String class|String]]</var> method: <var>[[EbcdicToUnicode (String function)|EbcdicToUnicode]]</var> converts an EBCDIC string to <var>Unicode</var>.
replaced by <tt>Print %u</tt> statements and the results would be the same.
</ul>
{{Template:Unicode:UnicodeToEbcdic footer}}

Latest revision as of 20:03, 6 November 2012

Translate to Ebcdic (Unicode class)

UnicodeToEbcdic converts a Unicode string to EBCDIC. Optionally, untranslatable characters can be represented with XML style hexadecimal character references.

Syntax

%string = unicode:UnicodeToEbcdic[( [CharacterEncode= boolean])] Throws CharacterTranslationException

Syntax terms

%string A string variable to receive the method object string translated to EBCDIC.
unicode A Unicode string to be translated.
CharacterEncode The optional (name required) CharacterEncode argument is a Boolean enumeration:
  • If its value is False, the default, an exception is thrown if the input contains any Unicode character not translatable to EBCDIC.
  • If its value is True, any Unicode character not translatable to EBCDIC is replaced with the hexadecimal character reference of the character, and the ampersand character is replaced with &amp;. For example, the eight characters &#x201C; replace the Unicode left double-quotation mark ().

Exceptions

This function can throw the following exception:

CharacterTranslationException
If the method encounters a translation problem, properties of the exception object may indicate the location and type of problem.

Usage notes

  • Unless the CharacterEncode argument is used, or you want to Catch a CharacterTranslationException, this function is generally not needed, because a Unicode string is implicitly converted to EBCDIC when used in an EBCDIC context. See the following example.
  • The UnicodeToEbcdic function is available as of Sirius Mods Version 7.3.

Examples

The following example shows multiple calls of UnicodeToEbcdic.

%u Unicode Initial('&#x31;':U) print %u:UnicodeToEbcdic %u = '1&#x80;2':U print %u:UnicodeToEbcdic(CharacterEncode=True) print %u:UnicodeToEbcdic

The result of the above fragment is:

1 1&#x0080;2 CANCELLING REQUEST: MSIR.0751: Class STRING, function UNICODETOEBCDIC: CHARACTER TRANSLATIONEXCEPTION exception: Unicode character U+0080 without valid translation to EBCDIC at byte position 5 ...

Note: Because of the implicit conversion of Unicode strings (in this case to String), the Print %u:UnicodeToEbcdic statements in the example above could be replaced by Print %u statements and the results would be the same.

See also