16
votes
Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?
$x =~ s/^\s+|\s+$//g;
or
s/^\s+//, s/\s+$// for $x;
…
0
votes
Expand string inline in Perl
What's your question? Perhaps you are looking for ack? It seems like you are attempting to …
8
votes
How can I remove unused, nested HTML span tags with a Perl regex?
Try HTML::Parser:
#!/usr/bin/perl
use strict;
use warnings;
use HTML::Parser;
my @print_span;
my $p = HTM …
1
vote
How can I efficiently match many different regex patterns in Perl?
Maybe something like:
my @interesting = (
qr/Failed in routing out/,
qr/Agent .+ failed/,
qr/Record Not Exist in DB/,
);
...
for my $re (@interesting) {
if ($line =~ /$re …
