Visit Mozilla.org

Core JavaScript 1.5 Reference:Global Objects:String

From MDC


Contents

[edit] Summary

Creates an object that let's you work with a series of characters.

[edit] Syntax

new String()
new String(string)

String literals take the form:

'stringText'
"stringText"

[edit] Parameters

string
Any string.
stringText
Any series of characters that has been properly encoded.

[edit] Description

String objects are created by calling the constructor new String(). The String object wraps Javascript's string primitive data type with the methods described below. The global function String() can also be called without new in front to create a primitive string. String literals in JavaScript are primitive strings.

Because Javascript automatically converts between string primitives and String objects, you can call any of the methods of the String object on a string primitive. JavaScript automatically converts the string primitive to a temporary String object, calls the method, then discards the temporary String object. For example, you can use the String.length property on a string primitive created from a string literal:

s_obj.length;       // 3
s_prim.length;      // 3
s_also_prim.length; // 3
'foo'.length;       // 3
"foo".length;       // 3

(A string literal can use single or double quotation marks.)

String objects can be converted to primitive strings with String.valueOf().

String primitives and String objects give different results when evaluated as Javascript. Primitives are treated as source code; String objects are treated as a character sequence object. For example:

s1 = "2 + 2";               // creates a string primitive
s2 = new String("2 + 2");   // creates a String object
eval(s1);                   // returns the number 4
eval(s2);                   // returns the string "2 + 2"
eval(s2.valueOf());         // returns the number 4

[edit] Character access

There are two ways to access an individual character in a string. The first is the charAt method:

return 'cat'.charAt(1); // returns "a"

The other way is to treat the string as an array, where each index corresponds to an individual character:

return 'cat'[1]; // returns "a"
The second way (treating the string as an array) is not part of the ECMAScript; it's a JavaScript feature.

In both cases, attempting to set an individual character won't work. Trying to set a character through charAt results in an error, while trying to set a character via indexing does not throw an error, but the string itself is unchanged.

[edit] Comparing strings

C developers have the strcmp() function for comparing strings. In JavaScript, you just use the less-than and greater-than operators:

var a = "a";
var b = "b";
if (a < b) // true
  print(a + " is less than " + b);
else if (a > b)
  print(a + " is greater than " + b);
else
  print(a + " and " + b + " are equal.");

A similar result can be achieved using the localeCompare method inherited by String instances.

[edit] Properties

For properties inherited by String instances, see Properties of String instances.

prototype
Allows the addition of properties to a String object.

Properties inherited from Function.prototype
caller, constructor, length, name

[edit] Methods

For methods inherited by String instances, see Methods of String instances.

fromCharCode
Returns a string created by using the specified sequence of Unicode values.

Methods inherited from Function.prototype
apply, call, toSource, toString, valueOf

Methods inherited from Object.prototype
__defineGetter__, __defineSetter__, hasOwnProperty, isPrototypeOf, __lookupGetter__, __lookupSetter__, __noSuchMethod__, propertyIsEnumerable, unwatch, watch

[edit] String instances

All String instances inherit from String.prototype. Changes to the String prototype object are propagated to all String instances.

[edit] Properties

constructor
Specifies the function that creates an object's prototype.
length
Reflects the length of the string.
N
Non-standard
Used to access the character in the Nth position where N is a positive integer between 0 and one less than the value of length. These properties are read-only.

[edit] Methods

[edit] Methods unrelated to HTML

charAt
Returns the character at the specified index.
charCodeAt
Returns a number indicating the Unicode value of the character at the given index.
concat
Combines the text of two strings and returns a new string.
indexOf
Returns the index within the calling String object of the first occurrence of the specified value, or -1 if not found.
lastIndexOf
Returns the index within the calling String object of the last occurrence of the specified value, or -1 if not found.
localeCompare
Returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
match
Used to match a regular expression against a string.
quote
Non-standard
Wraps the string in double quotes (""").
replace
Used to find a match between a regular expression and a string, and to replace the matched substring with a new substring.
search
Executes the search for a match between a regular expression and a specified string.
slice
Extracts a section of a string and returns a new string.
split
Splits a String object into an array of strings by separating the string into substrings.
substr
Returns the characters in a string beginning at the specified location through the specified number of characters.
substring
Returns the characters in a string between two indexes into the string.
toLocaleLowerCase
The characters within a string are converted to lower case while respecting the current locale. For most languages, this will return the same as toLowerCase.
toLocaleUpperCase
The characters within a string are converted to upper case while respecting the current locale. For most languages, this will return the same as toUpperCase.
toLowerCase
Returns the calling string value converted to lower case.
toSource
Non-standard
Returns an object literal representing the specified object; you can use this value to create a new object. Overrides the Object.toSource method.
toString
Returns a string representing the specified object. Overrides the Object.toString method.
toUpperCase
Returns the calling string value converted to uppercase.
valueOf
Returns the primitive value of the specified object. Overrides the Object.valueOf method.

[edit] HTML wrapper methods

Non-standard

Each of the following methods returns a copy of the string wrapped inside the appropriate HTML tag.

anchor
<a name="name"> (hypertext target)
big
<big>
blink
<blink>
bold
<b>
fixed
<tt>
fontcolor
<font color="color">
fontsize
<font size="size">
italics
<i>
link
<a href="url"> (link to URL)
small
<small>.
strike
<strike>
sub
<sub>
sup
<sup>

These methods are of limited use, as they provide only a subset of the available HTML tags and attributes.

Methods inherited from Object.prototype
__defineGetter__, __defineSetter__, hasOwnProperty, isPrototypeOf, __lookupGetter__, __lookupSetter__, __noSuchMethod__, propertyIsEnumerable, unwatch, watch

[edit] Examples

[edit] Example: Extending string instances with a repeat method

The following example creates a method, str_rep, and uses the statement String.prototype.repeat = str_rep to add the method to all String objects. All String instances then have that method, even objects already created. The example then creates an alternate method and overrides the previous method in one of the String objects using the statement s1.repeat = fake_rep. The str_rep method of the remaining String objects is not altered.

var s1 = new String("a");
var s2 = new String("b");
var s3 = new String("c");

// Create a repeat-string-N-times method for all String objects
function str_rep(n) {
   var s = "", t = this.toString();
   while (--n >= 0) {
     s += t
   }
   return s;
}

String.prototype.repeat = str_rep;

s1a=s1.repeat(3); // returns "aaa"
s2a=s2.repeat(5); // returns "bbbbb"
s3a=s3.repeat(2); // returns "cc"

// Create an alternate method and assign it to only one String variable
function fake_rep(n) {
   return "repeat " + this + " " + n + " times.";
}

s1.repeat = fake_rep
s1b=s1.repeat(1); // returns "repeat a 1 times."
s2b=s2.repeat(4); // returns "bbbb"
s3b=s3.repeat(6); // returns "cccccc"

The function in this example also works on String objects not created with the String constructor. The following code returns "zzz".

"z".repeat(3);