Parsing a simple file
Posted
by Mike Graham
on Stack Overflow
See other posts from Stack Overflow
or by Mike Graham
Published on 2010-03-12T18:30:35Z
Indexed on
2010/03/12
18:37 UTC
Read the original article
Hit count: 254
I have a file consisting of lines of the form
Foo="Some information" Bar="More"
Starting with such a string, what is the best way to extract "Some information"
and "More"
as strings? Foo
and Bar
are always exactly those names.
© Stack Overflow or respective owner