09-04
06
过滤{}中带有的英文的
作者:Java伴侣 日期:2009-04-06
第一种:
第二种:
复制内容到剪贴板 程序代码
String reg = "\\{\\w*\\}(\\w*)";
Pattern ptt = Pattern.compile(reg, Pattern.CASE_INSENSITIVE);
Matcher m_other = ptt.matcher("{hezzla}你好");
System.out.println(m_other.replaceAll("$1"));
Pattern ptt = Pattern.compile(reg, Pattern.CASE_INSENSITIVE);
Matcher m_other = ptt.matcher("{hezzla}你好");
System.out.println(m_other.replaceAll("$1"));
第二种:
复制内容到剪贴板 程序代码
String s = "{xx-a}english{汉字}汉字";
System.out.println(s.replaceAll("\\{[a-zA-Z-\\s]+\\}", ""));
System.out.println(s.replaceAll("\\{[a-zA-Z-\\s]+\\}", ""));
评论: 0 | 引用: 0 | 查看次数: 354
发表评论