in reply to modify variable on pass by value

Well, it's not a function, but it works...
my $string = "Hello World"; print "\L$string\E";
Sorry if I've missed the point here, just tossing my two robes in:)

Replies are listed 'Best First'.
RE: RE: modify variable on pass by value
by KM (Priest) on Sep 12, 2000 at 00:17 UTC
    The point isn't to lowercase any uppercase letters, rather to remove them. Yours doesn't do this.

    Cheers,
    KM

      Ahhh! That'll learn me for writing without fully reading first...my bad:( Sorry about that.