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 tokens like
a=b
c='123 456'
d=777
e='uij yyy';
|
|
The simplest way to do this is by hand implementing a simple finite state machine. In other words, process the string a character at a time:
|
|||
|
|
Depending on the formatting of your original string, you should be able to use a regular expression as a parameter to the java "split" method: Click here for an example. The example doesn't use the regular expression that you would need for this task though. You can also use this SO thread as a guideline (although it's in PHP) which does something very close to what you need. Manipulating that slightly might do the trick (although having quotes be part of the output or not may cause some issues). Keep in mind that regex is very similar in most languages. Edit: going too much further into this type of task may be ahead of the capabilities of regex, so you may need to create a simple parser. |
||||
|
|
correctly gives:
Make sure you adapt the [a-z+] part in case your keys structure changes. Edit: this solution can fail miserably if there is a "=" character in the value part of the pair. |
||||
|
|
|
Assumptions:
This works fine for me. Input:
Output:
Code:
|
|||
|
|
|
StreamTokenizer can help, although it is easiest to set up to break on '=', as it will always break at the start of a quoted string:
outputs
If you leave out the two lines that convert numeric characters to alpha, then you get |
|||
|
|
|
This solution is both general and compact (it is effectively the regex version of cletus' answer):
In other words, find all runs of characters that are combinations of quoted strings or non-space characters; nested quotes are not supported (there is no escape character). |
|||
|
|
output: {d=777, a=b, e='uij yyy', c='123 456'} In this case continuous space will be truncated to single space in the value. here attributed hashmap contains the values |
||||
|
|
|
Or, with a regex for tokenizing, and a little state machine that just adds the key/val to a map:
prints out
It does some basic error checking, and takes the quotes off the values. |
|||
|
|
|
|||||
|
|
|
Have you tried splitting by '=' and creating a token out of each pair of the resulting array? |
|||||
|