Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: Common Substrings

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


in reply to Re: Common Substrings
in thread Common Substrings

Thanks!

It took me a bit to understand that you were using a bisection method. But I agree that it should be reasonably efficient. I just have a tendency to avoid substr() since it always feels like a very expensive call.

The strings that I am spliting are paths, and because my sub then looks for the place of a slash, which should be 8 bits, I think that it is safe for me to use a binary method.

Replies are listed 'Best First'.
Re^3: Common Substrings
by salva (Canon) on Nov 15, 2005 at 11:51 UTC
    I just have a tendency to avoid substr() since it always feels like a very expensive call.

    substr is actually quite cheap as it doesn't copy the char data from the the original string, it just makes an alias to it.

    The strings that I am spliting are paths, and because my sub then looks for the place of a slash, which should be 8 bits

    I don't think so, on UTF8 strings byte offsets and char offsets can be different!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://508549]
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: (4)
As of 2024-04-25 07:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found