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.
我想将像“p^q”这样的字符串分成两个字符串,即“p”和“q”。如何在 Java 中使用“string.split”来做到这一点。我使用过像s.split("^"),s.split("\^")和s.split("\\^")!这样的语法。但是数组列表总是只有一个元素!谢谢
s.split("^")
s.split("\^")
s.split("\\^")
System.out.println(Arrays.toString("p^q".split("\\^")));
印刷
[p, q]
这证明由返回的数组split不是一个,而是两个元素,并且正是您需要的那些。
split