Help for this page

Select Code to Download


  1. or download this
    my @strings = (
        'foo1234bar',
    ...
        local $" = ',';
        print "<$string>: (@nums)\n";
    }
    
  2. or download this
    <foo1234bar>: (1234)
    <1234 5678>: (1234,5678)
    ...
    <123>: (123)
    < 123>: (123)
    <123 >: (123)