on Wed, 03 Jul 2002 23:48:37 GMT, Paul Arsenault wrote: > I can do everything except isolate the first > initial in the first name. Anyone know of an easy way to do this
my $firstname = 'Paul';
my $initial = substr($firstname, 0, 1);
See
perldoc -f substr
--
felix
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
