Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^3: Exact Word Search While Using \Q & \E

by pc88mxer (Vicar)
on Apr 10, 2008 at 16:00 UTC ( [id://679519]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Exact Word Search While Using \Q & \E
in thread Exact Word Search While Using \Q & \E

Here's another problem:
... $findit .= "/\Q$term\E/i $param ";
It appears that you want the match to be case insensitive when matching $term. The way to specify that is as follows:
$findit_re = "\\b(?i:\Q$term\E)\\b";
This turns on case-insensitive matching for $term. Also, note the use of double-slashes since double quotes are being used. An easier way to write this is to use qr//:
$findit_re = qr/\b(?i:\Q$term\E)\b/;

At first I thought you were confused about the use of \Q...\E. After more carefully reading your response I don't think this is the case, but here is what I wrote about it:

\Q and \E is simply another way of invoking the the quotemeta() function - it just escapes characters which are used to denote regular expression elements.

For instance, suppose you wanted to search for the three character sequence [a], i.e. a left bracket, the letter 'a', and then a right bracket, If you used the regular expression:

my $target = "[a]"; if ($string =~ m/$target/) { ... }
it wouldn't work as you wanted because the brackets would be be interpreted as being part of the character class regex element. You can fix things by using quotemeta or \Q...\E as follows:
my $target = "[a]"; if ($string =~ m/\Q$target\E/) { ... } # or: my $re = quotemeta($target); if ($string =~ m/$re/) { ... }
Now you'll only get a match if $string contains the three character sequence [a].

Another way to think about it is that the quotemeta is a function which converts a string to a regular expression which matches exactly that literal string.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-19 21:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found