我有一个简单的问题,我需要从 Java 中的 HTML 字符串中删除所有感叹号。我试过了
testo = testo.replaceAll("\\\\!", "! <br>");
和
regex = "\\s*\\b!\\b\\s*";
testo = testo.replaceFirst(regex, "<br>");
和
testo = testo.replaceAll("\\\\!", "! <br>");
但不起作用。有人能帮我吗?另一个小问题,我需要用一个断线替换 1、2 或 3 个感叹号,谢谢大家!