Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    
    ...
    $_="123";    /./g; undef pos; print "#6: ", /\G./g;
    $_="123";    /./g; pos = 2;   print "#7: ",   /./g;
    $_="123";    /./g; pos = 2;   print "#8: ", /\G./g;
    
  2. or download this
    #1: 123
    #2: 23
    ...
    #6: 123
    #7: 3
    #8: 3