- 字符串转数组
split(’,’) 将字符串内每个字符按照引号内符号分割并返回 - substring() / substr() 切割字符串
substring(startIndex, endIndex) 截取范围为两个下标之间的字符(含起始下标不含结束下标)
substr(startIndex, length) 截取范围为起始下标后length位字符 - replace() 替换字符串
只替换字符串中第一个匹配的字符&全部替换字符串中匹配的字符
来源:CSDN
作者:乌贼さま
链接:https://blog.csdn.net/weixin_42115781/article/details/104612708