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 xpath = "A/B/C[Hello world]/D";
上記の文字列では、角かっことその間の内容を置き換える必要があります。最終出力は次のようになりますA/B/C/D。
A/B/C/D
Hello以下のコードを書きましたが、 と の間にスペースがあると機能しませんWorld:
Hello
World
String Xpath1 = xpath.replaceAll("\\[[\\S]+\\]", "");