Re: Is there a way of reading a sequence from a variable?
- Posted by bill Apr 17, 2012
- 1294 views
What I want to read is any Eu object - eg "\"Hello\"".
That is given something like:
"\"alpha\" = 3.456"
I can read out "alpha",
drop the white space
see I've got '=',
drop it and any white space following,
then read out the value (which culd be any Eu object),
checking at the end I've consumed the whole string.
Sort of get() for strings, or
Poor man's parsing.
Thanks