java 字符串 替换 字符StringstrTmpnewString( ABCCCA )strTmpstrTmp.replaceAll( A ,X )
java 字符串 替换 字符
String strTmp = new String ( "ABCCCA ");strTmp = strTmp.replaceAll ( "A ", "X ");
java 字符串 替换 字符
String strTmp = new String ( "ABCCCA ");strTmp = strTmp.replaceAll ( "A ", "X ");