Convert string with commas to array

后端 未结 18 1141
执念已碎
执念已碎 2020-11-22 12:08

How can I convert a string to a JavaScript array?

Look at the code:

var string = \"0,1\";
var array = [string];
alert(array[0]);

In

18条回答
  •  北恋
    北恋 (楼主)
    2020-11-22 12:32

    Why don't you do replace , comma and split('') the string like this which will result into ['0', '1'], furthermore, you could wrap the result into parseInt() to transform element into integer type.

    it('convert string to array', function () {
      expect('0,1'.replace(',', '').split('')).toEqual(['0','1'])
    });
    

提交回复
热议问题