public static void main(String args[]) {
String str="For my money, the important thing "+"about the meeting was bridge-building";
 String regEx="([a-zA-Z0-9]|[_])*"; 
 Pattern p=Pattern.compile(regEx);
Matcher m=p.matcher(str);
 boolean result=m.find();
System.out.println(result);
 }
这个方法我如何用usename来代替测试?