Mar 19, 2007 #1 spewn Programmer Joined May 7, 2001 Messages 1,034 i'm comparing email addresses and need to compare the two even when someone may capitalize a part of the email address? - g
i'm comparing email addresses and need to compare the two even when someone may capitalize a part of the email address? - g
Mar 19, 2007 #2 KevinADC Technical User Joined Jan 21, 2005 Messages 5,070 Location US Code: if (lc $string1 eq lc $string2) { they match } ------------------------------------------ - Kevin, perl coder unexceptional! Upvote 0 Downvote
Code: if (lc $string1 eq lc $string2) { they match } ------------------------------------------ - Kevin, perl coder unexceptional!