Description
Allows manipulation and formatting of text strings and determination and location of substrings within strings.
Syntax
Remarks
You can call any of the methods of the String object using the constructor method new String or using a string literal value. You can convert the value of any object into a string using the String() function. All string indexes are zero-based, the index of the last character for any string x is as this: x.length - 1
Constructor
Descriptioncreates a new String object.
Syntaxnew String(value)
Parameters
Example
s = new String("Hello World");