Help for this page

Select Code to Download


  1. or download this
    my ($line1, $line2) = split /[\r\n]+/, $message;
    
  2. or download this
    my @lines = split /[\r\n]+/, $message;
    print "Line1: " . $lines[0];