http://www.perlmonks.org?node_id=998259


in reply to Help with regular expression

I would fake it by replacing the = sign with . (dot) and then using Data::SExpression or something to turn the strings into Perl expressions.

If faking is too much effort, then Parse::RecDescent or some other parser can also easily turn the given string into a data structure that then can be examined.

Replies are listed 'Best First'.
Re^2: Help with regular expression
by ng (Initiate) on Oct 10, 2012 at 19:28 UTC
    Thanks for your reponse. I don't have any of these modules installed in my perl and i can't use them.