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.
次のようにフォーマットされた文字列があります。
String str = "AA.BBB..CC.DDDD...EE....F.G..H";
そして、この文字列をドットで分割して、これを出力として使用したい:
AA BBB .CC DDDD . EE .. F G .H
str.split("\\.")もちろんうまくいきませんでした。
str.split("\\.")
これはうまくいくはずです:
str.split("(?<!\\.)\\.|(?<=\\.\\.)\\.(?!\\.)")
文字列は、次の 2 つの場合に分割する必要があります。
.