Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    $temp =~ /^(\w+)/i;
    
    my $firstword = $1;
    
  2. or download this
    my $temp = "Firstword and then the rest of the string";
    
    ...
    
    my $firstword = $1;
    my $restofstring = $2;