gpt4 book ai didi

java - 正则表达式用引号替换字符串

转载 作者:行者123 更新时间:2023-12-05 09:22:07 25 4
gpt4 key购买 nike

我需要替换以下字符串中的引号。

String str = "This is 'test()ing' and test()ing'";

最终输出应该是“This is test()ing and test()ing'”;

即仅当它以 'test() 开头并以 '.中间的文本保持不变。

这个不行。

str = str.replaceAll("^('test())(.*)(')$", "test()$2");

请为此建议合适的正则表达式。

最佳答案

这个正则表达式会得到想要的结果:

    str = str.replaceAll("'test\\(\\)(.*?)'", "test()$1");

对于 .*? 字符串是惰性匹配的,不会匹配到整个字符串的末尾。

关于java - 正则表达式用引号替换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28637346/

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