Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: RegEx for users who dont know RegEx

by The Mad Hatter (Priest)
on Dec 23, 2004 at 17:18 UTC ( [id://417158]=note: print w/replies, xml ) Need Help??


in reply to RegEx for users who dont know RegEx

One solution is to strip out all characters in the user-supplied data that aren't explicitly allowed and then generate your regex based off of that.

Update -- Try this sample code:

#!/usr/bin/perl use warnings; use strict; my $query = shift; die "usage: $0 query-string\n" if not $query; print "Original query: '$query'\n"; $query =~ s/[^\w\*]//g; print "Safe query: '$query'\n"; $query =~ s/\*/\\w\*/g; print "Parsed query: '$query'\n"; while (<DATA>) { print "match: $_" if /$query/i; } __DATA__ invitation information Isolation InFlaTiOn IATION In our nation it requires concentration at ionizing radiation
Note that "at ionizing radiation" matches because the iation in radiation matches. Did you just miss that, or should it not match?

Replies are listed 'Best First'.
Re^2: RegEx for users who dont know RegEx
by ikegami (Patriarch) on Dec 23, 2004 at 17:30 UTC
    Why strip out the unsafe characters instead of escaping them, as I did below? Using your approach to search for "can't" will fail, for example.
      *shrugs* Stripping out unsafe characters just seems like a better idea; you know exactly what you're left with. If you want to allow single ticks or other characters, modifying the regex of allowed chars is easy. The code above is just an example, not a final product.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 00:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found