如何用特殊字符分割字符串,但不删除它们?

时间:2019-01-16 04:19:28

标签: java regex

如何将(int,x)之类的字符串拆分为[(, int, , x, )]

1 个答案:

答案 0 :(得分:7)

有了预期的输出,您可以使用\b分割字符串并获得预期的输出,

这是Java代码,

String s = "(int,x)";
System.out.println(Arrays.toString(s.split("\\b")));

打印

[(, int, ,, x, )]