在使用split函数切割一个以空格为分隔符的字符串时,发现切出的长度和预期的长度不一致!!
- let str = "hellow world!" <strong><span style="color:#ff6666;">//注意hellow与world之前有两个空格</span></strong>
- console.log(str.trim().split(" "))
- console.log(str.trim().split(" ").length)
结果为【“hellow”,“ ”,“world!" 】
而我们希望的结果是hellow和world,长度为2
此时,应该用正则表达式来进行切割
- let str = "hellow world!" <strong><span style="color:#ff6666;"> //注意hellow与world之前有两个空格</span></strong>
- console.log(str.trim().split(/s+/))
- console.log(str.trim().split(/s+/).length)
结果为【“hellow”,“world!" 】
解决问题!希望大家也能注意到这个小坑! 切割前最好先用trim()将首尾的空格去掉!