例子:
"div#qwe.%class-first.class-two".split(/([#\.%])/)
["div", "#", "qwe", ".", "", "%", "class-first", ".", "class-two"]
单元格 4 为空。如何通过使用正则表达式来摆脱这种情况?
UPD #1我认为这match
很慢,但事实并非如此。我的小测试:
Match: 5
Filter: 15
Split: 11
Big match: 3092
Big filter: 7115
Big split: 2925