java中如何用正则表达式匹配两个逗号,,在两个逗号中间加空格。

2024-12-23 05:43:13
推荐回答(1个)
回答1:

public class Demo {
public static void main(String[] args) {
String str = "1,,,2,,,3,,,,5";
System.out.println(str.replaceAll(",(?=[^\\w])", ", "));
}
}