List of Unicode methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
m (Automatically generated page update)
Line 7: Line 7:
<tr><th>Method</th><th>Description</th></tr>
<tr><th>Method</th><th>Description</th></tr>
<tr><td valign="top">[[UnicodeChar (Unicode function)|UnicodeChar]]</td><td valign="top">The value at a specified position in the input string</td></tr>
<tr><td valign="top">[[UnicodeChar (Unicode function)|UnicodeChar]]</td><td valign="top">The value at a specified position in the input string</td></tr>
<tr><td valign="top">[[UnicodeFormUrlEncode (Unicode function)|UnicodeFormUrlEncode]]</td><td valign="top">Form URL encode unicode string</td></tr>
<tr><td valign="top">[[UnicodeLeft (Unicode function)|UnicodeLeft]]</td><td valign="top">The left-most characters of the string</td></tr>
<tr><td valign="top">[[UnicodeLeft (Unicode function)|UnicodeLeft]]</td><td valign="top">The left-most characters of the string</td></tr>
<tr><td valign="top">[[UnicodeLength (Unicode function)|UnicodeLength]]</td><td valign="top">Length of this string</td></tr>
<tr><td valign="top">[[UnicodeLength (Unicode function)|UnicodeLength]]</td><td valign="top">Length of this string</td></tr>
Line 24: Line 25:
<tr><td valign="top">[[UnicodeTrimRight (Unicode function)|UnicodeTrimRight]]</td><td valign="top">Trim characters from right of string</td></tr>
<tr><td valign="top">[[UnicodeTrimRight (Unicode function)|UnicodeTrimRight]]</td><td valign="top">Trim characters from right of string</td></tr>
<tr><td valign="top">[[UnicodeUntranslatablePosition (Unicode function)|UnicodeUntranslatablePosition]]</td><td valign="top">Position of first Unicode character not translatable to EBCDIC</td></tr>
<tr><td valign="top">[[UnicodeUntranslatablePosition (Unicode function)|UnicodeUntranslatablePosition]]</td><td valign="top">Position of first Unicode character not translatable to EBCDIC</td></tr>
<tr><td valign="top">[[UnicodeUrlEncode (Unicode function)|UnicodeUrlEncode]]</td><td valign="top">URL encode unicode string</td></tr>
<tr><td valign="top">[[UnicodeWith (Unicode function)|UnicodeWith]]</td><td valign="top">Concatenate this Unicode string with another</td></tr>
<tr><td valign="top">[[UnicodeWith (Unicode function)|UnicodeWith]]</td><td valign="top">Concatenate this Unicode string with another</td></tr>
</table>
</table>

Revision as of 01:02, 11 March 2011

The following are the available Unicode class methods.

MethodDescription
UnicodeCharThe value at a specified position in the input string
UnicodeFormUrlEncodeForm URL encode unicode string
UnicodeLeftThe left-most characters of the string
UnicodeLengthLength of this string
UnicodePositionInThe numeric position of one string within another
UnicodePositionOfThe numeric position of one string within another
UnicodeRegexMatchPosition after match of regex
UnicodeRegexReplaceReplace regex matche(s)
UnicodeReplaceApply the replacement table to this string
UnicodeRightThe right-most characters of the string
UnicodeSubstringReturn a substring of the method object string
UnicodeToEbcdicTranslate to Ebcdic
UnicodeToLowerTranslate to lowercase
UnicodeToUpperTranslate to uppercase
UnicodeToUtf16Translate to UTF-16
UnicodeToUtf8Translate to UTF-8
UnicodeTrimLeftTrim characters from left of string
UnicodeTrimRightTrim characters from right of string
UnicodeUntranslatablePositionPosition of first Unicode character not translatable to EBCDIC
UnicodeUrlEncodeURL encode unicode string
UnicodeWithConcatenate this Unicode string with another

See also