Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Global Functions > mblength() | |||
Flash Lite 1.0.
mblength(string)
string A string.
String function; returns the length of the multibyte character string.
The following example displays the length of the string in the myString variable:
myString = mbchr(36) add mbchr(50);
trace ("string length = " add mblength(myString));
// Output: string length = 2
|
|
|
|