Help for this page

Select Code to Download


  1. or download this
    my $start = 1+index $_,q(");
    die "No quoted string found" unless $start;
    $_ = substr $_,$start;
    my $stop = index, $_, q(");
    $_ = substr $_,0,$stop;
    
  2. or download this
    s/^\s*//;
    
  3. or download this
    my $start = 1+nindex $_," ";
    
  4. or download this
    my $start = 1+nindex $_,"[\t ]";