gpt4 book ai didi

java - 如何在java中替换 '{Name}'

转载 作者:搜寻专家 更新时间:2023-10-31 08:06:17 24 4
gpt4 key购买 nike

我需要用值替换字符串中的值,例如 {Name}
我们如何替换特殊字符{}
我试过这个:

str.replaceAll("{Name}","A");

但是如果我们有特殊字符,这就不起作用了。

最佳答案

使用replace而不是 replaceAll,因为 replace 不期望并解析正则表达式。

示例:( live copy )

String str = "Here it is: {Name} And again: {Name}";
System.out.println("Before: " + str);
str = str.replace("{Name}","A");
System.out.println("After: " + str);

输出:

Before: Here it is: {Name} And again: {Name}After: Here it is: A And again: A

关于java - 如何在java中替换 '{Name}',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32755147/

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