vote up 1 vote down star
1

I have a file that I want to read in using the File::Slurp module then search that file for a specific line. I know Perl has regular expressions but the strings I’m searching for are user-generated so don’t want to have to worry about escaping everything. I could write a foreach loop to do this but was wondering if there’s a function in Perl that will do this for me? Everything I see online about finding text in Perl uses regular expressions.

flag

27% accept rate
can you provide an example? – Alnitak Feb 3 at 18:56
It's like asking "How can I drive to the shops without using my car?"... – womble Feb 3 at 18:58

3 Answers

vote up 16 vote down

You can just use a regular expression. You don't have to worry about escaping everything, Perl has the quotemeta function for that (or alternatively, "\Q\E").

link|flag
vote up 0 vote down

Can you just use a string literal using q()?

print(q(This string can contain regex: (\n\t*\n)(\n)));
link|flag
vote up 2 vote down

Like this?

use List::Util qw<first>;

my $line 
    = first { index( $_, $something_users_are_looking_for ) > -1 } 
      <$file>
    ;

And if you want 'em all.

my @lines
    = grep { index( $_, $something_users_are_looking_for ) > -1 } 
      <$file>
    ;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.