I would like to use Regular expression to identify certain words in a string.
For example:
"bla bla bla | First Name = John Doe | City = Denver | bla bla bla | State = CA | bla bla bla"
In the above string, which is | delimited for words, I want to parse out the content of First Name, City, and State and store them some where like in a hash table.
How do I go about doing that? I think the best way would be is to use Regular expression.