Help for this page

Select Code to Download


  1. or download this
    my $line = "0010+2+O?'Reilly'";
    my @fields = ($line =~ /(.*?)[\+']/g);  
    my $i = 0;
    map { print "[" . $i++ . "]$_\n" } @fields;
    
  2. or download this
    [0]0010
    [1]2
    [2]O?
    [3]Reilly
    
  3. or download this
    [0]0010
    [1]2
    [2]O'Reilly