http://www.perlmonks.org?node_id=938739


in reply to Re: string match using with an N in any position
in thread string match using with an N in any position

Hi BrowserUk, You code has worked perfectly for my problem!!! I agree that my problem was one that needed more than just regular expression. However I was struggling to get an elegant solution in perl. Could I please ask you to explain me these two lines:
my $matched = ( $q ^ substr( $t, 0, length( $q ) ) ) =~ tr[\0] +[\0]; if( $matched >= ( length( $q ) -1 ) )

Replies are listed 'Best First'.
Re^3: string match using with an N in any position
by BrowserUk (Patriarch) on Nov 18, 2011 at 05:03 UTC

    Sure.

    During the first iteration, the first of those lines will come down to:

    my $matched = ( 'GCGAT' ^ 'GNGAT' ) =~ tr[\0][\0];

    In words, the first of the query strings is exclusive-Or'd (^) with the first 5 characters of the first target string.

    Where the aligned characters in those two string are the same, the result of xoring them will be zero. Where the two characters differ, the result will be non-zero:

    $xord = 'GCGAT' ^ 'GNGAT';; print unpack 'C*', $xord;; 0 13 0 0 0

    In order to know how many characters matched, all we need to do is count the zeros, which is efficiently done using the transliteration operator:

    $matched = ( 'GCGAT' ^ 'GNGAT' ) =~ tr[\0][\0];; print $matched;; 4

    The result of the first line is that $matched is assigned the number of characters that matched between the two strings.

    As you want all characters, except one in any position, to match, the second line tests the number that matched against the length of the query string minus 1:

    if( $matched >= ( length( $q ) -1 ) ) { ## we have a winner

    If you know all your query strings are always five characters, then you could hard code the value 4 instead of ( length( $q ) -1 ). Ditto for the usage of length in the substr, but it never hurts to be flexible if there is little cost involved in doing so.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.