每个人。
我有一个这样的字符串
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+");
问题是它包含“那个”,而不是我想要的“那个”。请教我如何解决它。谢谢