Fleur Junier wrote: > how do I get a character at position index out of a string like c++ char > * string[index] ?
my $SourceString = "Hello, World!"; my @CharArray = split //, $SourceString; foreach (@CharArray) { print "$_\n"; } -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]