Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created June 7, 2016 00:53
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ishu3101/00c296fcb04bb10f4c2d5fbff894b06a to your computer and use it in GitHub Desktop.
Save ishu3101/00c296fcb04bb10f4c2d5fbff894b06a to your computer and use it in GitHub Desktop.
3 ways to loop through each character in a string in Perl
# 3 ways to loop through each character in a string
$text = "hello world";
for $i (0..length($text)-1){
$char = substr($text, $i, 1);
print "Index: $i, Text: $char \n";
}
foreach $char (split //, $text) {
print "$char\n";
}
foreach $char (split('', $text)) {
print "$char\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment