in reply to
Stripping characters from strings
#Split a string into characters $_ = "Ashok kumar"; @chars = split(//,$_); @chars = reverse @chars;#@chars will have "ramuk kohsA"
Comment on
RE: Stripping characters from strings
In Section
Seekers of Perl Wisdom