这篇文章主要介绍了java 字符串匹配函数,在开发过程应该对大家很有帮助,小编结合实例代码给大家介绍的非常详细,需要的朋友可以参考下
去掉字符串中匹配 的字符串
/**
* 去掉字符串中匹配 的字符串
*
* @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,""));
*/
}
以上就是java 字符串匹配函数。如果说每一次降落是为了更好的起飞,那么每一次降落后的起飞就应该飞得更高更远!更多关于java 字符串匹配函数请关注haodaima.com其它相关文章!