外观
用于把字符串打撒为一个数组,比字符串split()方法更加高级,支持unicode编码。
split()
unicode
uni.$c.stringToArray(string)
const str = '\u4f60\u597d,世界 Hello World !'; console.log(uni.$c.stringToArray(str)); //结果: ['你', '好', ',', '世', '界', ' ', 'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', ' ', '!']