In js, both substring and substr are used to intercept strings. What is the specific difference between substring and substr? Is there any difference, next, I will introduce some instances to introduce these problems.
Substring Method
The substring method is used to extract characters that are intermediary between two specified subscripts.
Substring (start, end)
Start and end locations, index starting from scratch
Parameter description
Start is required. A non-negative integer that specifies the position of the first character of the substring to be extracted in the stringObject.
Optional. A non-negative integer is 1 more than the position of the last character of the substring to be extracted in the stringObject. If this parameter is omitted, the returned substring ends at the end of the string.
Return Value
A new string. The value of this string contains a substring of stringObject. Its content is all characters from start to stop-1, and its length is stop minus start.
Description
The substring returned by the substring method includes the start character, but not the end character.
If start and end are equal, this method returns an empty string (a string with a length of 0 ).
If start is greater than end, this method swaps the two parameters before extracting the substring.
If start or end is negative, it is replaced with 0.
Example
The Code is as follows: |
Copy code |
Var stringObject = "hello world! "; Alert (stringObject. substring (3); // lo world! Alert (stringObject. substring (3, stringObject. length); // lo world! Alert (stringObject. substring (); // lo w, space is also included in [l] [o] [] [w]
|
2) If startIndex and endIndex are equal, an empty string is returned. If startIndex is larger than endIndex, replace the two parameters before the substring is extracted. That is, stringObject. substring (startIndex, endIndex) is equivalent to stringObject. substring (endIndex, startIndex)
The Code is as follows: |
Copy code |
Var stringObject = "hello world! "; Alert (stringObject. substring (3, 3); // empty string Alert (stringObject. substring (3, 7); // lo w Alert (stringObject. substring (7,3); // lo w
|
Substr Method
Definition and usage
The substr method returns a substring of the specified length starting from the specified position.
Syntax
StringObject. substr (start [, length])
Parameter description
Start is required. The starting position of the required substring. The index of the first character in the string is 0.
Length is optional. The number of characters to be included in the returned substring.
Description
If start is negative, start = str. length + start.
If the length is 0 or negative, an empty string is returned.
If this parameter is not specified, the substring will continue to the end of the stringObject.
The Code is as follows: |
Copy code |
Var stringObject = "hello world! "; Alert (stringObject. substr (3); // lo world! Alert (stringObject. substr (3, stringObject. length); // lo world! Alert (stringObject. substr (3, 4); // lo w |
Example:
The Code is as follows: |
Copy code |
Var str = "0123456789 "; Alert (str. substring (0); ------------ "0123456789" Alert (str. substring (5); ------------ "56789" Alert (str. substring (10 ));-----------"" 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); ---------- "01" Alert (str. substring (2, 2 ));----------"" Alert (str. substring (2, 5); ---------- "234" Alert (str. substring (2, 12); --------- "23456789" Alert (str. substring (2,-2); --------- "01" Alert (str. substring (-01234" Alert (str. substring (-1,-5 ));--------"" Alert (str. substr (0); --------------- "0123456789" Alert (str. substr (5); --------------- "56789" Alert (str. substr (10 ));--------------"" Alert (str. substr (12 ));--------------"" Alert (str. substr (-5); -------------- "56789" Alert (str. substr (-10); ------------- "0123456789" Alert (str. substr (-12); ------------- "0123456789" Alert (str. substr (01234" Alert (str. substr (0, 10); ------------ "0123456789" Alert (str. substr (0, 12); ------------ "0123456789" Alert (str. substr (2, 0 ));-------------"" Alert (str. substr (2, 2); ------------- "23" Alert (str. substr (2,5); ------------- "23456" Alert (str. substr (2,12); ------------ "23456789" Alert (str. substr (2,-2 ));------------"" Alert (str. substr (-1, 5); ------------ "9" Alert (str. substr (-1,-5 ));-----------"" |
Substr () can be used instead of substring (). The Code above shows that stringObject. substr (3, 4) is equivalent to stringObject. substring (3, 7)