1
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.

请让我知道剥离到第一个标签的最佳方法是什么。

4

1 回答 1

2

更好的方法是使用“真正的”HTML 解析器。但是你也可以用正则表达式来做到这一点。尝试这样的事情:

String result = tmp.replaceFirst(".*?<b>.*?</b>", "");

于 2012-05-08T16:09:34.740 回答