Feb 142008
Match a string using regular expressions in Perl
Answer:
The following code demo how to match a string in Perl,
my $s = 'love foobar';
if ( $s =~ /foo/ ) {
print 'matched';
}
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Match a string using regular expressions in Perl
Answer:
The following code demo how to match a string in Perl,
my $s = 'love foobar';
if ( $s =~ /foo/ ) {
print 'matched';
}