正则表达式 替换或去掉字符串中的 <p><⼀p>标签 如 : 张三<p>aaaa<⼀p>历史<p>bbbb<⼀p>

2024-12-01 00:38:22
推荐回答(3个)
回答1:

如果要替换掉

aaaa

,包括内容,就把

[^<]*?

替换为空

如果要替换掉

,不包括中间的内容,就把

([^<]*?)

替换为$1

回答2:

查找的表达式

[^<]*?



替换的表达式
[什么都不要填]

回答3:

String str ="

陆羽《茶经》有言:山水上,江水下,井水次。

【茶圣陆羽排出的宜茶之水】:

第一、庐山康王谷水帘水;

第二、无锡惠山寺石泉水;

"
String contentStr ;
if (str .contains("

")) {
contentStr = answer.getContent().replace("

", " ");
contentStr = contentStr.replace("

", " ");
Log.e("123"," "+contentStr );
}