Comment Re:Uh... no (Score 1) 86
> The strlen($String) function will take a LONG time to complete, because the result is characters, not bytes, and the framework has to count chars from the beginning to see how many there are, and of course this isn't the bytes of storage you need to allocate on disk.
That's not true in Perl, because Perl stores characters not as a simple array of bytes (as C would) but an array of *codepoints*. Perl's unicode support is very very good. I don't know why slashdot does what it does.