in reply to
first char of string?
The easiest way would be to pull a substring of the scalar, thusly: $string = "I *AM* the binary bitch goddess!"; $test_string = substr($string,0,1); print $test_string;
Comment on
RE: first char of string?
In Section
Seekers of Perl Wisdom