public static interface TextUtils.StringSplitter extends Iterable<String>
The most efficient way to use this class is:
// Once per string to split
splitter.setString(string);
for (String s : splitter) {
...
}
void setString(String string)
Copyright © 2021. All rights reserved.