Home > Web Front-end > JS Tutorial > body text

How to split a string in javascript

醉折花枝作酒筹
Release: 2023-01-04 09:34:57
Original
72856 people have browsed it

Separation method: 1. Use "string.split (separator)"; 2. Use "String.substring (start position, end position)"; 3. Use "String.substr (start position, interception) length)"; 4. Use "String.slice(start position, end position)".

How to split a string in javascript

The operating environment of this tutorial: Windows 7 system, JavaScript version 1.8.5, Dell G3 computer.

1. Use the string.split() method to split the string

If the target string has a [separator] for data splitting, you can Use this method to split strings. For example: "1|2|3|4" data with [|] as the separator, String.split("|").

How to split a string in javascript

2. Use String.substring (start, stop) to split the string

start is required. A non-negative integer that specifies the position in string of the first character of the substring to be extracted.

stop is optional, a non-negative integer, the header does not include the tail, and it needs to be 1 more than the last target character number.

How to split a string in javascript

3. Use String.substr(start,lenght) to split the string

start is required. The starting index of the substring to be extracted. Must be a numeric value. If negative, this parameter declares the position from the end of the string. That is, -1 refers to the last character in the string, -2 refers to the second to last character, and so on.

length is optional. The number of characters in the substring. Must be a numeric value. If this parameter is omitted, the string from the beginning to the end of the string is returned.

How to split a string in javascript

4. Use String.slice(start,end) to split the string

Extract a certain part of the string and Return the extracted part as a new string.

How to split a string in javascript

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of How to split a string in javascript. 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 admin@php.cn
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!