Java 按空格、新行、制表符、标点符号拆分字符串
每个人 都。
我有一个这样的字符串
String message = "This is the new message or something like that, OK";
我想把它分成数组
String[] dic = {"this", "is", "the", "new", "message", "or", "something", "like", "that", "OK"};
我用过
message = message.split("\\s+");
问题在于它包含“那个”,而不是我想要的“那个”。请教我如何解决它。谢谢