Constructor summary
Signature
String(value:String)
Method summary
Modifiers
Signature
charAt(index:Number) :
charCodeAt(index:Number) :
concat(value:Object) :
static
fromCharCode() :
indexOf(value:String,
[startIndex:Number]) :
lastIndexOf(value:String,
[startIndex:Number]) :
slice(start:Number, end:Number) :
String
split(delimiter:String,
[limit:Number]) :
Description
Creates a new String object.
String
Number
String
String
Number
Number
Array
Description
Returns the character in the position
specified by the parameter index.
Returns a 16-bit integer from 0 to
65535 that represents the
character specified by index.
Combines the value of the String
object with the parameters and
returns the newly formed string; the
original value, my_str, is
unchanged.
Returns a string comprising the
characters represented by the
Unicode values in the parameters.
Searches the string and returns the
position of the first occurrence of
value found at or after startIndex
within the calling string.
Searches the string from right to left
and returns the index of the last
occurrence of value found before
startIndex within the calling string.
Returns a string that includes the
start character and all characters
up to, but not including, the end
character.
Splits a String object into substrings
by breaking it wherever the
specified delimiter parameter
occurs and returns the substrings in
an array.
String
627
Need help?
Do you have a question about the FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE and is the answer not in the manual?