in reply to
first char of string?
To get the first character of a string, use substr() my $test = "Hello World!"; print substr($test,0,1);
Comment on
RE: first char of string?
In Section
Seekers of Perl Wisdom