标签: java html replaceall
字符串url:<a href='https://sample.com'>Example:</a>
<a href='https://sample.com'>Example:</a>
我要保留文本Example: 如何使用replaceAll来用“”进行删除/替换?
Example
答案 0 :(得分:3)
特别适合您的情况:
String url = "<a href='https://sample.com'>Example:</a>"; String text = url.replaceAll("<a.*>\\b", "").replaceAll("</a>", ""));