use 5.010; my $t = $s1 ^ $s2; my ($f) = $t =~ /^(\x{00}*)/; say length $f;
Another way to do that:
use 5.010; my $t = $s1 ^ $s2; $t =~ /^\0*/ && say $+[0]
In reply to Re^2: If there a way to find the location of the first difference between two strings?
by jwkrahn
in thread If there a way to find the location of the first difference between two strings?
by flexvault
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |