09-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"));


第二种:
String s = "{xx-a}english{汉字}汉字";
        
System.out.println(s.replaceAll("\\{[a-zA-Z-\\s]+\\}", ""));


[本日志由 blurxx 于 2009-04-14 08:38 AM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: 过滤 英文 大括号
相关日志:
评论: 0 | 引用: 0 | 查看次数: 308
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭