Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下字符串:
<stx>1<rs>aaaa<rs>bbbb<rs>cccc<etx>
如何以在数组中得到 1,aaaa,bbbb,cccc 的方式拆分它?
我尝试拆分,<rs>但后来我进入<stx>1,aaaa,bbbb,cccc了我的数组。
<rs>
<stx>1,aaaa,bbbb,cccc
那么我该如何摆脱<stx>呢?
<stx>
stx,rs并且etx是字符顺便说一句。
stx
rs
etx
谢谢
您可以使用以下正则表达式进行拆分:
<\w+>
在 Java 中使用它时,不要忘记转义\:
\
String[] splitted = myString.split("<\\w+>");