Help for this page

Select Code to Download


  1. or download this
    my $GrepResult = grep($_->[0] =~ /$SearchStr/,@cdata);
    
  2. or download this
    my ($GrepResult) = grep($_->[0] =~ /$SearchStr/,@cdata);
    
  3. or download this
    my ($GrepResult) = grep($_->[0] =~ /^$SearchStr$/,@cdata);
    
  4. or download this
    my ($GrepResult) = grep($_->[0] =~ /^\Q$SearchStr\E$/,@cdata);
    
  5. or download this
    my ($GrepResult) = grep($_->[0] eq $SearchStr,@cdata);
    
  6. or download this
    my ($GrepResult) = grep($_->[0] =~ /^$SearchStr$/,@cdata);
    
  7. or download this
    my $regexp = qr/^$SearchStr$/;
    my ($GrepResult) = grep($_->[0] =~ $regexp,@cdata);