Help for this page

Select Code to Download


  1. or download this
    # split
    my ($key, $string1) = split /=/, $_, 2;
    print "$key, $string1\n";
    
  2. or download this
    #re 1
    /^TITLE=(.*)/;
    ...
    # substr
    my $string4 = substr($_, 6);
    print "$string4\n";