我在一个字符串上有一个短语,我想将它拆分为其他 5 个或更多字符串而不带空格。例如:
String test = "hi/ please hepl meok?";
而且我要 :
String temp1 = "hi/";
String temp2 = "please";
String temp3 = "help";
String temp4 = "meok?";
我不想将它添加到数组中,因为我想将 temp4 拆分为另外 3 个字符串。例如
->> 拆分后的 temp4:
temp4 = "me"
temp5 = "ok"
temp6 = "?"
之所以问这个问题,是因为我想编写一个方法来解码带有一些解码器的 LinkedHashMap 集中的字符串短语。谢谢。如果我的方法不对,请指导我!:)