-
-
Save smartree/af0a38140fdf2a1613e8aac590f9cf91 to your computer and use it in GitHub Desktop.
Revisions
-
ishu3101 created this gist
Jun 7, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # 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"; }