Help for this page

Select Code to Download


  1. or download this
    my $parse = ' ';
    my $test_line = 'Happy Birthday';
    $test_line =~/(Happy).*/;
    $parse = $1;
    print "parse = $parse\n";
    
  2. or download this
    parse = Happy
    
  3. or download this
    $parse = $test_line =~/(Happy).*/;
    
  4. or download this
    parse = 1
    
  5. or download this
    $var = $line =~ /pattern/;