http://blog.sina.com.cn/s/blog_5c5bc9070100ywkj.html
一些特殊字符需要转义. 例如 \ | . 等等.
stringsObj.split("\\|")
首先通过 \\ 转出 \ 然后 \| 转出 |
因为 | 在正则表达式里有特殊的意义的.
http://blog.sina.com.cn/s/blog_5c5bc9070100ywkj.html
一些特殊字符需要转义. 例如 \ | . 等等.
stringsObj.split("\\|")
首先通过 \\ 转出 \ 然后 \| 转出 |
因为 | 在正则表达式里有特殊的意义的.