我有一个像这样的字符串:
{ TestAddCardForMerchant }
我希望将
{
,}
替换为""
。有可能这样做吗? 最佳答案
使用String.replaceAll()
method和"[{}]"
正则表达式:
String replaced = "{ TestAddCardForMerchant }".replaceAll("[{}]","\"");
字符串
replaced
将为" TestAddCardForMerchant "
。