Help for this page

Select Code to Download


  1. or download this
    print("$1:") while ('abcdefgh' =~ /(.)/g);
    a:b:c:d:e:f:g:h:
    
    print("$1:") while ('vowels' =~ /([aeiou])/g);
    o:e:
    
  2. or download this
    print("$1:") while ('oiseau' =~ /\G([aeiou])/g);
    o:i: