我想从带有正则表达式的字符串中删除<
和>
之间的所有内容,包括(<
和>
)。这里有几个例子。Hi<friends>and<family>
它应该给Hiand
<Rekha Verma>[email protected]
,那么应该给出[email protected]
Reva Patel
它应该给Reva Patel
它应该给的<Reva Patel>[email protected],<rekha Verma>[email protected]
[email protected],[email protected]
谁能给我一个正则表达式吗?我需要用Java实现它。
最佳答案
尝试使用正则表达式:
<.*?>
例如:
String s = "Hi<friends>and<family>";
System.out.println(s.replaceAll("<.*?>", ""));