How to split a string in js

藏色散人
Release: 2018-12-19 09:42:35
Original
28812 people have browsed it


#JS implements string splitting, we can use the JavaScript split() method. If you want to decompose or split a string from specific characters or delimiters, you can use the JavaScript split() method.

How to split a string in js

Now we will introduce to you the method of js to implement string splitting with a simple code example.




    
    JS拆分字符串示例

Copy after login

In the above code, the string is split at each blank space, and the returned value will be an array containing the split values.

The split result is as follows:
How to split a string in js

split() method is used to split a string into a string array.

The syntax:

stringObject.split(separator,howmany)
Copy after login

The return value is a string array. The array is created by splitting the string stringObject into substrings at the boundaries specified by separator. The strings in the returned array do not include the separator itself.

However, if separator is a regular expression that contains subexpressions, the returned array includes strings that match those subexpressions (but not text that matches the entire regular expression).

Note: If an empty string ("") is used as a separator, each character in the stringObject will be split.

This article is an introduction to JS splitting strings. It is simple and easy to understand. I hope it will be helpful to friends in need!


The above is the detailed content of How to split a string in js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!