Static variables
Static methods
staticchar(this:NativeString, index:Int):String
Returns a character at the specified index
.
Throws an exception if index
is outside of the string bounds.
staticcode(this:NativeString, index:Int):Int
Returns a character code at the specified index
.
Throws an exception if index
is outside of the string bounds.
staticsub(this:NativeString, start:Int, ?length:Int):NativeString
Returns a fresh string up to length
characters long, containing the
substring that starts at position start
.
If length
is not specified the all characters from start
to the end
of this string are returned.
Throws an exception if index
is outside of the string bounds.