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」の2つの文字列に分割したいと思います。Javaで「string.split」を使用してこれを行うにはどうすればよいですか。、、、 !などs.split("^")の構文を使用s.split("\^")しました。s.split("\\^")ただし、arraylistには常に1つの要素があります。ありがとう
s.split("^")
s.split("\^")
s.split("\\^")
System.out.println(Arrays.toString("p^q".split("\\^")));
プリント
[p, q]
これは、によって返される配列にsplit1つではなく、2つの要素があり、まさに必要な要素があることを証明します。
split