Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Matching first Letters of two words

by AnomalousMonk (Archbishop)
on Apr 21, 2009 at 04:20 UTC ( [id://758864]=note: print w/replies, xml ) Need Help??


in reply to Re: Matching first Letters of two words
in thread Matching first Letters of two words

Here is a solution that detects when initial alphas of separate strings are the same regardless of case, and that I think is immune to differences in the locale or the Unicode character set that may be in effect. My understanding of the effects of locale and Unicode on regex behavior continues to be a bit vague.

I would be interested in any comments, links, etc., from other monks on my notions that:

  1. The regex expression  [^\W\d_] matches an alpha character regardless of locale or the ASCII or Unicode character set in effect during compilation of the script.
  2. The expressions  [[:alpha:]] and  [^\W\d_] have exactly the same behavior.
  3. The  //o modifier of the  m{ \A ([^\W\d_]) }xmso regex prevents re-compilation of the regex on multiple calls and so is, in theory, more efficient.
  4. After two strings in which the first characters are identical have been bitwise-xored in the expression  ((lc str1) ^ (lc str2)) =~ /^\0/, the regex  /^\0/ is not guaranteed always to match with the first character of the resultant string regardless of locale or character set.
>perl -wMstrict -le "print '----- output -----'; while (my ($word1, $word2) = splice @ARGV, 0, 2) { print qq{:$word1: and :$word2: initial letters }, first_letter_matches($word1, $word2) ? 'same' : 'different'; } sub first_letter_matches { my ($w1, $w2) = @_; return $w1 =~ m{ \A ([^\W\d_]) }xmso && $w2 =~ m{ \A $1 }xmsi ; } " a a a A Ab abc b b abcd A A1% a2# "" "" "" a a "" a b a bc ab c 123 123 %# %# ----- output ----- :a: and :a: initial letters same :a: and :A: initial letters same :Ab: and :abc: initial letters same :b: and :b: initial letters same :abcd: and :A: initial letters same :A1%: and :a2#: initial letters same :: and :: initial letters different :: and :a: initial letters different :a: and :: initial letters different :a: and :b: initial letters different :a: and :bc: initial letters different :ab: and :c: initial letters different :123: and :123: initial letters different :%#: and :%#: initial letters different

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-19 11:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found