in reply to Re^2: Parse::RandGen::Regexp
in thread Parse::RandGen::Regexp
To convert the first string, (?smi)^STOR\s[^\n]{100}, into a compiled regular expression for P::RG::R, just use qr/$string/, assuming $string contained the string as read from the external source (don't forget to chomp it if that's the case!).
To convert the second string, /^STOR\s[^\n]{100}/smi, again, assuming $string is read from an external source (not perl code - perl DATA is fine), just use eval "qr$string".
No matter what, if the string is starting out inside perl code, you have to escape the \'s that have special meaning to the regular expression parser but not to perl, such as \s, \w, \S, \W, \d, \D, ... so that they survive to the parser. This is not needed if the string is stored outside of code because then the perl compiler won't see the \'s.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Parse::RandGen::Regexp
by paulski (Beadle) on Aug 07, 2005 at 06:37 UTC | |
by Tanktalus (Canon) on Aug 07, 2005 at 13:36 UTC | |
by ikegami (Patriarch) on Aug 08, 2005 at 12:37 UTC | |
by Tanktalus (Canon) on Aug 08, 2005 at 14:04 UTC | |
by paulski (Beadle) on Aug 08, 2005 at 06:30 UTC |