|
September 27, 2001 Extracting the Remainder of a String Tips: September 2001
Yehuda Shiran, Ph.D.
|
|
The substring() method accepts two parameters, start and end, and extracts the substring beginning at position start up to and not including the character at position end. The first character of a string is at position 0. Here is the syntax:
For example, the following code should return "Doc JavaScript":
The parameters start and end can be switched, as JavaScript takes the smaller value to begin the substring and the higher one to end it. Also, the second parameter may be omitted. In this case, the substring will end when the string itself is exhausted. For example, the following code should return "biweekly columns and daily tips":
People who read this tip also read these tips: Look for similar tips by subject: |