The example in this article describes the method of splitting a string in js and putting the split data into an array. Share it with everyone for your reference. The specific implementation method is as follows:
var splitArray = new Array(); var string="太平洋、大西洋、印度洋、北冰洋"; var regex = /、/; splitArray=string.split(regex); for(i=0; i < splitArray.length; i++){ document.write(splitArray[i] + "<br>"); }
I hope this article will be helpful to everyone’s JavaScript programming design.