我有一个包含html文本的字符串。我想从中删除强标签,并将文本保留在标签中。 对于此输入:
some text <strong> example </strong other text
结果应为:
some text example other text
我尝试过此操作,但这正在删除标记中的文本
String target = htmlString.replaceAll("<strong.*</strong>", "");
答案 0 :(得分:3)
htmlString.replace(/<strong>|<\/strong>/g, "");
答案 1 :(得分:0)
public class Stack_Ex {
public static void main(String[] args) {
String text = "some text <strong> example </strong other text";
text = text.replaceFirst(" <strong>","");
text = text.replaceFirst(" </strong","");
System.out.println(text);
}}
输出:一些文本示例,其他文本