in reply to Re: Print left-anchored similarities between two strings
in thread Print left-anchored similarities between two strings
You can save a couple of steps:
my @strings = qw( /home/usernames/doejohnwilson x/home/usernames/doejanemary ); my $common_length = ( $strings[0] ^ $strings[1] ) =~ /^\0*/ && $+[0]; print substr $strings[0], 0, $common_length;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Print left-anchored similarities between two strings
by miketosh (Acolyte) on Nov 11, 2009 at 20:27 UTC |