String str = "123456";
// 可以使用任意字符串分隔,如$1-
String result1 = str.replaceAll("(.{2})(?=.{2})", "$1 ");
String result2 = str.replaceAll("(.{2})(?=.{2})", "$1-");

结果如下

posted on 2021-09-02 09:42  什么鬼-  阅读(416)  评论(0编辑  收藏  举报