java 字符串匹配函数
程序员文章站
2022-05-29 13:53:41
去掉字符串中匹配 的字符串复制代码 代码如下:/** * 去掉字符串中匹配 的字符串 * * @author zhujie * @return string regex 要...
去掉字符串中匹配 的字符串
/**
* 去掉字符串中匹配 的字符串
*
* @author zhujie
* @return string regex 要替换的内容 value 字符串 state 替换的内容变成什么
*/
public static string toregex(string regex, string value, string state) {
pattern p = pattern.compile(regex);
matcher m = p.matcher(value);
stringbuffer sb = new stringbuffer();
while (m.find()) {
m.appendreplacement(sb, state);
}
m.appendtail(sb);
return sb.tostring();
}
public static void main(string[] args) {
* string regex = "\\p{lower}"; //去掉里面的小写字符 regex ="'"; //去掉里面的 '
* regex="\\p{sc}"; //去掉货币符号 $ regex="\\p{punct}"; //去掉里面的所有的符号
* regex="\""; //去掉 " regex ="<.>"; //去掉里面的html 标签
*
* string value="fjdks<sss>jfl'fdk$$jfl";
* system.out.println(toregex(regex,value,""));
*/
}
复制代码 代码如下:
/**
* 去掉字符串中匹配 的字符串
*
* @author zhujie
* @return string regex 要替换的内容 value 字符串 state 替换的内容变成什么
*/
public static string toregex(string regex, string value, string state) {
pattern p = pattern.compile(regex);
matcher m = p.matcher(value);
stringbuffer sb = new stringbuffer();
while (m.find()) {
m.appendreplacement(sb, state);
}
m.appendtail(sb);
return sb.tostring();
}
复制代码 代码如下:
public static void main(string[] args) {
* string regex = "\\p{lower}"; //去掉里面的小写字符 regex ="'"; //去掉里面的 '
* regex="\\p{sc}"; //去掉货币符号 $ regex="\\p{punct}"; //去掉里面的所有的符号
* regex="\""; //去掉 " regex ="<.>"; //去掉里面的html 标签
*
* string value="fjdks<sss>jfl'fdk$$jfl";
* system.out.println(toregex(regex,value,""));
*/
}