http://qs321.pair.com?node_id=679506


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

Thanks Prasad,

I tried substituting the \Q and \E with \b and the program quit matching anything.

Also tried putting the \b in front of the \Q, and behind the \E, but that didn't match anything either.

I'm really confused.

Gwalchmai

  • Comment on Re^2: Exact Word Search While Using \Q & \E

Replies are listed 'Best First'.
Re^3: Exact Word Search While Using \Q & \E
by pc88mxer (Vicar) on Apr 10, 2008 at 16:00 UTC
    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.