Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Is it safe to use external strings for regexes?

by Anonymous Monk
on Oct 06, 2021 at 15:16 UTC ( [id://11137265]=note: print w/replies, xml ) Need Help??


in reply to Is it safe to use external strings for regexes?

Why not stick your regexen in a custom module? You're going to have to change code to centralize them anyway, and use Our::Custom::Regexen; looks to me like a lot less work than pulling them out of a database. In fact, the database solution might be enough work that you end up wrapping it in a custom module anyway. Source control on this module may not prevent the injection of broken code, but at least will let you figure out who did it.

Your example script could easily be converted into a test using the Perl testing infrastructure, however you choose to implement.

Replies are listed 'Best First'.
Re^2: Is it safe to use external strings for regexes?
by NERDVANA (Deacon) on Oct 07, 2021 at 12:38 UTC
    Expanding on this idea, it looks like those regexes might be identifying types of data? If so, consider a type library built on Type::Tiny

      Or maybe Regexp::Common if you have to infer the data type from its form.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11137265]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-16 18:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found