Tagged Questions
3
votes
9answers
3k views
Tokenize a string with a space in java
I want to tokenize a string like this
String line = "a=b c='123 456' d=777 e='uij yyy'";
I cannot split based like this
String [] words = line.split(" ");
Any idea how can I split so that I get ...
1
vote
4answers
309 views
Java - Tokenize Parameter List
I'm trying to create a method which takes a String parameter and then returns a two dimensional String array of parameter names and values.
protected final String[][] setParams (String parms) {
...
0
votes
1answer
48 views
Should I change from buffered read to in-memory/tokenize on Android app for reading a 100,000 line file?
Currently I am loading a text file that contains 100,000 lines into a SortedMap using buffered reads. Should I abandon this approach and instead load the entire file into memory and then tokenize by ...
0
votes
1answer
415 views
What is the best way to tokenize a text file in Java?
What is the best way to tokenize a text file in Java, if
I want to work with a java.io.Reader, not a String
Delimiters should be returned?
I have evaluated the following classes:
...