Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^4: Common Substrings

by salva (Canon)
on Nov 15, 2005 at 16:00 UTC ( [id://508653]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Common Substrings
in thread Common Substrings

no, because then, the offsets would be wrong... maybe you could use the utf8::upgrade function to mark the returned strings as unicode but your code would become really ugly and unmaintainable.

If you are looking for common file paths why don't you use something simpler like:

sub diffpath_ix { my ($a, $b) = @_; my $last = 0; while ( $a=~m{(\G[^/]*/)}g ) { if ( substr($b, $last, length $1) eq $1 ) { $last = pos $a } else { return $last } } if (substr($a, $last) eq substr($b, $last)) { return length $a } return $last; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (10)
As of 2024-04-18 12:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found