1. charAtReturns the specified character from a string grammarstr.charAt(index) parameterindex An integer between 0 and the length of the string minus 1. (0~length-1) If no index is provided, charAt() will use 0. Return ValueReturns the specified character, or an empty string if the specified index value is out of range. 2. concatConcatenates one or more strings with the original string to form a new string and returns it. The concat method does not affect the original string. grammarstr.concat(str2, [, ...strN]) parameterstr2 [, …strN]The string to be concatenated to str. Return ValueA new string containing the connection string provided as a parameter. 3. indexOfReturns the index of the first occurrence of the specified character in the String object, searching from fromIndex. If the value is not found, -1 is returned. grammarstr.indexOf(searchValue [, fromIndex]) parametersearchValue The string value to be searched. fromIndex (optional) The number indicates where to start searching. Can be any integer, default value is 0. Return ValueReturns the index of the first occurrence of the search string searchValue, or -1 if not found. Special circumstances1. If the search string searchValue is an empty string and the fromIndex value is empty, or the fromIndex value is less than the length of the search string, the return value is the same as the fromIndex value below 2. If the search string searchValue is an empty string, and the fromIndex value is greater than or equal to the length of the string, the length of the string will be returned directly 4. lastIndexOfThe opposite of indexOf, it just searches from the back to the front. 5.matchSearch returns a string that matches the regular expression. grammarstr.match(regexp) parameterregexpA regular expression object. If a non-regular expression object is passed in, it will be implicitly converted to a RegExp using new RegExp(obj). If you don't give any arguments and use the match() method directly, you will get an Array containing an empty string: [""] . Return Value
6. replaceReturns a new string with some or all matches of pattern replaced by replacement. The pattern can be a string or a regular expression, and the replacement can be a string or a callback function to be called on each match. If pattern is a string, only the first occurrence is replaced. The original string will not be changed. grammarstr.replace(regexp|substr, newSubStr|function) parameterregexp (pattern)A RegExp object or its literal. The content matched by this regular expression will be replaced by the return value of the second parameter. substr (pattern)A string that will be replaced by newSubStr. It is treated as a whole string, not a regular expression. Only the first occurrence is replaced. newSubStr (replacement)The string used to replace the matching part of the first parameter in the original string. Some special variable names can be interpolated in this string. See Using Strings as Parameters below. function (replacement)A function that creates a new substring whose return value replaces any matches of the first argument. See Specifying a function as an argument below. Return ValueA new string with some or all of the matches in the replacement pattern replaced. 7. toLowerCaseConverts a string value to lowercase and returns grammarstr.toLowerCase() Return ValueA new string representing the calling string converted to lower case. 8. toUpperCaseThe opposite of toLowerCase, convert to uppercase 9. SubstringReturns a subset of a string between the start index and the end index, or from the start index until the end of the string. grammarstr.substring(indexStart[, indexEnd]) parameterindexStartThe index of the first character to be intercepted. The character at this index position is used as the first letter of the returned string. indexEndOptional. An integer between 0 and the length of the string. The characters indexed by this number are not included in the truncated string. Return ValueA new string containing the specified portion of a given string. SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! 1. charAtReturns the specified character from a string grammarstr.charAt(index) parameterindex An integer between 0 and the length of the string minus 1. (0~length-1) If no index is provided, charAt() will use 0. Return ValueReturns the specified character, or an empty string if the specified index value is out of range. 2. concatConcatenates one or more strings with the original string to form a new string and returns it. The concat method does not affect the original string. grammarstr.concat(str2, [, ...strN]) parameterstr2 [, …strN]The string to be concatenated to str. Return ValueA new string containing the connection string provided as a parameter. 3. indexOfReturns the index of the first occurrence of the specified character in the String object, searching from fromIndex. If the value is not found, -1 is returned. grammarstr.indexOf(searchValue [, fromIndex]) parametersearchValue The string value to be searched. fromIndex (optional) The number indicates where to start searching. Can be any integer, default value is 0. Return ValueReturns the index of the first occurrence of the search string searchValue, or -1 if not found. Special circumstances1. If the search string searchValue is an empty string and the fromIndex value is empty, or the fromIndex value is less than the length of the search string, the return value is the same as the fromIndex value below 2. If the search string searchValue is an empty string, and the fromIndex value is greater than or equal to the length of the string, the length of the string will be returned directly 4. lastIndexOfThe opposite of indexOf, it just searches from the back to the front. 5.matchSearch returns a string that matches the regular expression. grammarstr.match(regexp) parameterregexpA regular expression object. If a non-regular expression object is passed in, it will be implicitly converted to a RegExp using new RegExp(obj). If you don't give any arguments and use the match() method directly, you will get an Array containing an empty string: [""] . Return Value
6. replaceReturns a new string with some or all matches of pattern replaced by replacement. The pattern can be a string or a regular expression, and the replacement can be a string or a callback function to be called on each match. If pattern is a string, only the first occurrence is replaced. The original string will not be changed. grammarstr.replace(regexp|substr, newSubStr|function) parameterregexp (pattern)A RegExp object or its literal. The content matched by this regular expression will be replaced by the return value of the second parameter. substr (pattern)A string that will be replaced by newSubStr. It is treated as a whole string, not a regular expression. Only the first occurrence is replaced. newSubStr (replacement)The string used to replace the matching part of the first parameter in the original string. Some special variable names can be interpolated in this string. See Using Strings as Parameters below. function (replacement)A function that creates a new substring whose return value replaces any matches of the first argument. See Specifying a function as an argument below. Return ValueA new string with some or all of the matches in the replacement pattern replaced. 7. toLowerCaseConverts a string value to lowercase and returns grammarstr.toLowerCase() Return ValueA new string representing the calling string converted to lower case. 8. toUpperCaseThe opposite of toLowerCase, convert to uppercase 9. SubstringReturns a subset of a string between the start index and the end index, or from the start index until the end of the string. grammarstr.substring(indexStart[, indexEnd]) parameterindexStartThe index of the first character to be intercepted. The character at this index position is used as the first letter of the returned string. indexEndOptional. An integer between 0 and the length of the string. The characters indexed by this number are not included in the truncated string. Return ValueA new string containing the specified portion of a given string. SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: The process of quickly converting mysql left join to inner join
>>: Several methods of horizontal and vertical centering of div content using css3 flex
When I was looking at some CSS3 animation source ...
Table of contents 1. Introduction 2. RC and RR is...
If the developer uses Dockerfile to build the ima...
MySQL is a free relational database with a huge u...
MySQL Advanced SQL Statements use kgc; create tab...
1. Installation Environment Computer model: Lenov...
The answer you often hear is that using a NULL va...
Table of contents 1. Structural instructions Modu...
Table of contents Use of CURRENT_TIMESTAMP timest...
question Recently I encountered a requirement to ...
Table of contents 1. Introduction 2. Install Dock...
CocosCreator realizes skill CD effect There are s...
background Use idea with docker to realize the wh...
Table of contents Block-level functions Directly ...
The shutdown.bat file has a sentence if not "...