Help for this page

Select Code to Download


  1. or download this
    my $s = "hi, how are you?";
    my $s2 = ($s =~ s/,.*//gr);
    
    print "$s2 \n$s\n";
    
  2. or download this
    __OUTPUT__
    hi
    hi, how are you?