substr Method
Returns a substring of the specified length starting at the specified position.
Stringvar.substr (start [, length])
Parameters
Stringvar
Required option. The string literal or string object to extract the substring.
Start
Required option. The starting position of the desired substring. The index of the first character in the string is 0.
Length
Options available. The number of characters that should be included in the returned substring.
Description
If length is 0 or negative, an empty string is returned. If this argument is not specified, the substring continues to the end of the stringvar.
Example
The following example shows the use of the Substr method.
Copy Code code as follows:
function Substrdemo () {
var s, SS; Declare a variable.
var s = "The rain in Spain falls mainly in the plain.";
SS = S.substr (12, 5); Gets the substring.
return (SS); Returns "Spain".
}
Example: <script type= "Text/javascript" > var str = "0123456789";/alert (str.substring (0));//------------"0123456789 "Alert (str.substring (5));//------------" 56789 "alert (str.substring);//-----------" "Alert (str.substring (12)) ;//-----------"" Alert (str.substring ( -5)),//-----------"0123456789" alert (str.substring ( -10));//----------" 0123456789 "Alert (str.substring ( -12));//----------" 0123456789 "alert (str.substring (0,5));//----------" 01234 " Alert (str.substring (0,10));//---------"0123456789" alert (str.substring (0,12));//---------"0123456789" alert ( Str.substring (2,0))//----------"(Str.substring (2,2));//----------" "Alert (str.substring (2,5));//------ ----"234" alert (2,12);//---------"23456789" alert (str.substring);---------"Alert" ( Str.substring ( -1,5))//---------"01234" alert (str.substring ( -1,-5));//--------"" Alert (STR.SUBSTR (0));//-------- -------"0123456789" Alert (STR.SUBSTR (5));//---------------"56789" Alert (STR.SUBSTR (10));//--------------"" Alert (str.substr);//--------------"" Alert (Str.substr ( -5));//--------------"0123456789" alert (Str.substr ( -10));//-------------"0123456789" alert (STR.SUBSTR ( -12));//-------------"0123456789" alert ( Str.substr (0,5))//-------------"01234" alert (STR.SUBSTR (0,10));//------------"0123456789" alert (str.substr )//------------"0123456789" alert (str.substr 2,0);//-------------"" Alert (Str.substr (2,2));/-------------"23 "Alert" (2,5);//-------------"23456" alert (STR.SUBSTR (2,12));//------------"23456789" alert (str.substr (2,-2)); /------------"" Alert (Str.substr ( -1,5));//------------"01234" alert ( -1,-5);/-----------"" </ Script>
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]
substring Method
Returns a substring at the specified position in a string object.
Strvariable.substring (start, end)
"String Literal". Substring (start, end)
Parameters
Start
Indicates the starting position of the substring, starting at 0.
End
Indicates the end position of the substring, starting at 0.
Description
The substring method returns a string containing a substring from start to the last (not including end).
The substring method uses the smaller values in both start and end as the starting point for substrings. For example, strvar.substring (0, 3) and strvar.substring (3, 0) will return the same substring.
If start or end is NaN or negative, replace it with 0.
The length of the substring equals the absolute value of the difference between start and end. For example, the length of the substring returned in strvar.substring (0, 3) and strvar.substring (3, 0) is 3.
Example
The following example shows the use of the substring method.
Copy Code code as follows:
function Substringdemo () {
var SS; Declare a variable.
var s = "The rain in Spain falls mainly in the plain ...";
SS = S.substring (12, 17); Takes a substring.
return (SS); Returns a substring.
}
More basics can be referred to:
Http://www.jb51.net/w3school/js/jsref_substring.htm
Http://www.jb51.net/w3school/js/jsref_substr.htm