我有什么:
String result = "<>hello<!><>Soumik<!><>Having a wonderful day?<!>";
我需要什么:
resultStrings = ["hello", "Soumik", "Having a wonderful day?"];
答案 0 :(得分:1)
答案 1 :(得分:0)
怎么样:
result = result.replace("<", "");
result = result.replace(">","";
resultStrings = result.split("!");
这很简单。
我不了解其他情况,因此可能没用。请添加条件,以便我可以回复。