弱问一下
java里的正则表达式,比如我匹配一个新浪的邮箱 [email protected] class Expression
{
  public static void main (String args[])
  {
    String regex="\\w{1,}@\\w{1,}\56\\w{1,}";
        String str1="[email protected]";
        if(str1.matches(regex))
        {
          System.out.println("str1 match!");
        }
  }
}
请问\56是什么意思,怎么就可以匹配.了呢?