From: "Rob Dixon" <[EMAIL PROTECTED]>
> Unless there is a fixed limit, which I don't think there is, I imagine
> identifiers are held inside Perl as a C string, which is
> null-terminated and therefore of any length supportable by the
> hardware. I doubt if it will cause you problems.
No they are not C stringz.
our ${"one\0two"} = 10;
print ${"one\0two"},"\n";
They are Perl strings so they can contain any character you like.
But of course if you do use certain characters you'll have to quote
the variablename.
Anyway ... I don't think there is any limit (you could reach).
Maybe the variablename cannot be longer than say 4GB, but ... ;-)
Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed
to get drunk and croon as much as they like.
-- Terry Pratchett in Sourcery
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]