Javascript string and array conversion Summary

Source: Internet
Author: User
Tags array to string

Javascript string and array conversion Summary

This article will share with you the simple and practical functions of converting strings into arrays and arrays into strings in Js. For more information, see.

Convert array to string

1. join () method

?

1

2

3

4

Var s = ["a", "d", "a", "f", "g", "f", "s", "g"];

S. join () // "a, d, a, f, g, f, s, g"

S. join ("") // "a d a f g f s g"

S. join (''); // adafgfsg

String to array

1. call () method

?

1

2

3

Var str = "adafgfsg ";

Var strArr = Array. prototype. slice. call (str, 0 );

Console. log (strArr );

Result: ["a", "d", "a", "f", "g", "f", "s", "g"]

2. Regular Expression

?

1

2

3

4

5

6

Var str = "adafgfsg ";

Var strArr = str. replace (/(.)(? =.)/G, '$1,'). split (',');

Console. log (strArr );

Var str = "adafgfsg ";

Var strArr = str. match (/\ w/g );

Console. log (strArr );

Result: ["a", "d", "a", "f", "g", "f", "s", "g"]

3. directly use the split () method

?

1

2

3

Var str = "adafgfsg ";

Var strArr = str. split ('');

Console. log (strArr );

Result: ["a", "d", "a", "f", "g", "f", "s", "g"]

The above is all the content summarized in this article. I hope you will like it.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.