我们如何在特定的字符串或字符处拆分给定的字符串,因为我不想使用android的Split函数,有没有可用的替代方法?
答案 0 :(得分:2)
我会重新选择GUAVA Lib。
http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/base/Splitter.html
答案 1 :(得分:1)
StringTokenizer是一个不错的选择,如果你不介意迭代性质。
以下是与此相关的帖子:Android Split string
例如,从该帖子:
String myStr = "Fruit: they taste good";
StringTokenizer tokens = new StringTokenizer(myStr, ":");
String first = tokens.nextToken();// this will contain "Fruit"
String second = tokens.nextToken();// this will contain " they taste good"