I wonder if anyone can provide me with the regular expressions needed to parse a string like:
'foo bar "multiple word tag"'
into an array of tags like:
["foo","bar","multiple word tag"]
Thanks
feedback
|
|
In Ruby
E.g.
| |||||||
feedback
|
|
You could implement a scanner to do this. For instance, in Python it'd look something like this:
This is called lexical analysis. | |||||
feedback
|
|
First of all, I'd suggest doing this with a
where the 3 indicates no more than 3 parts, would work for your example. You could use a If you're intent on doing it with regular expressions, perhaps because each line could have a variable number of tags, to some extent it depends on what exactly you're using to do the parsing, since different regex engines sometimes have different ways of representing the same things. And I don't think it can be done with just a plain old regular expression by itself; you'll need some code to go along with it. For example, here's a (pseudo-?)pseudocode solution using a Perl-compatible regular expression (or something like it, anyway):
For what it's worth, I would probably do this with a DFA (discrete finite automaton), which goes through the string character-by-character appending each one to a buffer and flushing the buffer when it's reached the end of a tag (either because of a space or a closing quote mark). Maybe it's just me but I feel like this is a pretty simple parsing task and it would be easier to understand (to my mind) in terms of DFA states. | |||
feedback
|
|
Here we go (Perl style):
Explanation:
| ||||
|
feedback
|
|
General regex that will work with any match->array function:
Ruby example:
(untested) | |||||||||||
feedback
|
|
A regex will almost certainly not be the solution that you are looking for here. Regex's are useful for parsing a set of matched input from a larger string. For example, if I wanted to just get the user name from an email address I could use the following regex to grab the data
The name would be present in the name group "username" In your case, you are not trying to get a subset of the input string. You are trying to match the elements of the entire string. At the end of the day, the regex will just say "yes it matches" or "no it doesn't". In order to get out the contents you will need to actually parse out the string. | |||
|
feedback
|