1. 代码演示
public class TestDemo {
@Test
public void test() {
//需要替换的字符串
String target = "验证码:${code},您正在登录管理后台,5分钟内输入有效。";
//正则表达式
String regEx = "[$]";
//替换之后的新字符
String replace = "";
Pattern compile = Pattern.compile(regEx);
Matcher matcher = compile.matcher(target);
//结果
String str = matcher.replaceAll(replace).trim();
//String str = Pattern.compile(regEx).matcher(target).replaceAll(replace).trim();
System.out.println(str);
}
}
- String regEx = “[$]”:括号中填写我们需要替换的字符,该例中我们需要替换掉$,则括号中填写$。
- String replace = “”:该字符串为我们想要替换成的新字符
2. 结果