当前位置: 代码迷 >> J2SE >> 如其用正则表达式截取字符串
  详细解决方案

如其用正则表达式截取字符串

热度:678   发布时间:2013-02-25 00:00:00.0
如果用正则表达式截取字符串
我现在有一段字符:#¥%%哈哈15241ADF*&*%……
我现在想截取 哈哈15241ADF 这段字符,应该要怎么写?

Pattern pattern = Pattern.compile(".+?\\[(*+?)\\]*+?");
Matcher matcher = pattern.matcher(s);
if (matcher.matches()) {
     String group = matcher.group(1);
System.out.println(group);
} else {
System.out.println("no matches!!");
}中文字符也加上去啊。。。客气啥

[0-9a-zA-Z\u4E00-\u9FA5]