Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created June 7, 2016 00:53
Show Gist options
  • Save ishu3101/00c296fcb04bb10f4c2d5fbff894b06a to your computer and use it in GitHub Desktop.
Save ishu3101/00c296fcb04bb10f4c2d5fbff894b06a to your computer and use it in GitHub Desktop.

Revisions

  1. ishu3101 created this gist Jun 7, 2016.
    16 changes: 16 additions & 0 deletions loop_string.pl
    Original 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";
    }