string str="aaaccc c,accc";return str.trim().replace(" ","");去除标点符号用正则或者replace
空格用trim()方法,标点符号可以用正则。