1.问题说明: //将如下字符串改为一个逗号分隔 张三,李四,王五,,,,,,六,,,,其,,,,,,,,,,,把 ==> 张三,李四,王五,六,其,把 2.解决方法 sel oreplace( oreplace( oreplace('张三,李四,王五,,,,,,六,,,,其,,,,,,,,,,,把' ,',,',',#') ,'#,','') ,'#','') 使用三个oreplace语句,具体原理如下: (1)将两个逗号替换为逗号和#(#号为特殊字符,可任意选择) 张三,李四,王五,#,#,