gpt4 book ai didi

java - 替换字符串从 <\开始

转载 作者:行者123 更新时间:2023-12-01 12:28:24 25 4
gpt4 key购买 nike

如何替换句子中所有以 <\ 开头的字符串并结束>

有什么办法可以做到这一点吗?

现在我正在手动替换每个单词。

示例:-

test = test.replace("</tr>", "");
test = test.replace("</html>", "");

最佳答案

您可以使用.replaceAll方法。

来自java文档:

Replaces each substring of this string that matches the given regular expression with the given replacement.

Java 代码应该是:

test.replaceAll("<\\/\\w+>");

关于java - 替换字符串从 <\开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26141629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com