List of Unicode methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (Automatically generated page update)
Line 20: Line 20:
<tr><td valign="top">[[UnicodeToUpper (Unicode function)|UnicodeToUpper]]</td><td valign="top">Translate to uppercase</td></tr>
<tr><td valign="top">[[UnicodeToUpper (Unicode function)|UnicodeToUpper]]</td><td valign="top">Translate to uppercase</td></tr>
<tr><td valign="top">[[UnicodeToUtf16 (Unicode function)|UnicodeToUtf16]]</td><td valign="top">Translate to UTF-16</td></tr>
<tr><td valign="top">[[UnicodeToUtf16 (Unicode function)|UnicodeToUtf16]]</td><td valign="top">Translate to UTF-16</td></tr>
<tr><td valign="top">[[UnicodeToUtf16Hex (Unicode function)|UnicodeToUtf16Hex]]</td><td valign="top">Translate to hexadecimal UTF-16</td></tr>
<tr><td valign="top">[[UnicodeToUtf8 (Unicode function)|UnicodeToUtf8]]</td><td valign="top">Translate to UTF-8</td></tr>
<tr><td valign="top">[[UnicodeToUtf8 (Unicode function)|UnicodeToUtf8]]</td><td valign="top">Translate to UTF-8</td></tr>
<tr><td valign="top">[[UnicodeToUtf8Hex (Unicode function)|UnicodeToUtf8Hex]]</td><td valign="top">Translate to hexadecimal UTF-8</td></tr>
<tr><td valign="top">[[UnicodeTrimLeft (Unicode function)|UnicodeTrimLeft]]</td><td valign="top">Trim characters from left of string</td></tr>
<tr><td valign="top">[[UnicodeTrimLeft (Unicode function)|UnicodeTrimLeft]]</td><td valign="top">Trim characters from left 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">[[UnicodeTrimRight (Unicode function)|UnicodeTrimRight]]</td><td valign="top">Trim characters from right of string</td></tr>
Line 47: Line 45:
</tr>
</tr>
</table>
</table>
</div>

Revision as of 12:28, 7 February 2011

The following are the available Unicode class methods.

MethodDescription
UnicodeCharThe value at a specified position in the input 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
UnicodeUntranslatablePosition
UnicodeWithCatenate this unicode with another

See also