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

Re^3: Common Substrings

by Anonymous Monk
on Nov 15, 2005 at 15:39 UTC ( [id://508639]=note: print w/replies, xml ) Need Help??


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

Does that mean that I simply need no bytes; before returning the values?

Replies are listed 'Best First'.
Re^4: Common Substrings
by salva (Canon) on Nov 15, 2005 at 16:00 UTC
    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://508639]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-04-23 18:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found