in reply to
String Length
$string =~ s/(.*).{2}$/$1/;
[download]
my $name = 'Ben Kittrell'; $name=~s/^(.+)\s(.).+$/\L$1$2/g; my $nick = 'tha' . $name . 'sta';
Comment on
Re: String Length
Download
Code
In Section
Seekers of Perl Wisdom