in reply to Re: Re: TNSNAMES.ORA and Recdescent
in thread TNSNAMES.ORA and Recdescent

Also keep in mind that PRD rules are more than just regex. Nothing wrong with something like this:
IP: /([\d.]+)/ { use Socket; inet_aton($1) and $1 }
This takes any digit/dot string and calls inet_aton on it, and if it passes, accepts the value. Otherwise, rejects the value. PRD rocks.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.