📜  android 爆炸字符串 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:49.354000             🧑  作者: Mango

代码示例1
String currentString = "Fruit: they taste good";
String[] separated = currentString.split(":");
separated[0]; // this will contain "Fruit"
separated[1]; // this will contain " they taste good"