gpt4 book ai didi

java - 匹配表达式并替换

转载 作者:行者123 更新时间:2023-11-29 09:48:16 25 4
gpt4 key购买 nike

我有一个像 This-is-${username} 这样的字符串 我想匹配 ${username} 并将其替换为值 Tom。我正在尝试遵循代码和许多其他代码但没有成功。

String str = "This-is-${username}";
System.out.println(str.replaceAll("[/^${*}$/]", "Tom"));

编辑:${} 之间可以有任何值,当前它的用户名介于 ${}

之间

最佳答案

使用\\$\\{[^}]*\\}

String pattern = "\\$\\{[^}]*\\}";

String str1 = "This-is-${username}";
System.out.println(str1.replaceAll(pattern, "Tom"));


String str2 = "This-is-${something}-again";
System.out.println(str2.replaceAll(pattern, "Tom"));

输出

This-is-Tom
This-is-Tom-again

关于java - 匹配表达式并替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20652016/

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