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.
この文字列「hello>kok>peoplekok」を解析したい区切り文字を文字だけでなく文字列にしたい。"> kok>"とすると、結果は1:hello 2:peoplekokになります。
split()メソッドを調べましたが、区切りは文字だけのようです。
ご協力いただきありがとうございます。
split メソッドは正規表現を取ります:)試してください
"hello>kok>peoplekok".split(">kok>");
また、このLINKもご覧ください
String testString = "hello>kok>peoplekok"; String result[] = testString.split("">kok>");
結果に答えが含まれるようになりました
result[0] = hello result[1] = peoplekok