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 tmp = "4 days ago <b>...</b> Jon founded the video <b>Yahoo</b>! and also"; I want to remove "4 days ago <b>...</b>" from the string.
最初のタグまで削除する最良の方法を教えてください。
より良い方法は、「本物の」HTML パーサーを使用することです。ただし、正規表現でも同様に実行できます。次のようなことを試してください:
String result = tmp.replaceFirst(".*?<b>.*?</b>", "");