8
votes
What is the proper regular expression for an unescaped backslash before a character?
Updated:
My new and improved regex, supporting more than 3 backslashes:
/(?<!\\) # Not preceded by a single backslash
(?>\\\\)* # an even number of backslashes
\\q # Follo …
4
votes
How can I find the location of a regex match in Perl?
The pos function gives you the position of the match. If you put your regex in parentheses you can get the length (and thus the end) using length $1. Like this
sub mat …
7
votes
How can I find the location of a regex match in Perl?
Forget my previous post, I've got a better idea.
sub match_positions {
my ($regex, $string) = @_;
return if not $string =~ /$regex/;
return ($-[0], $+[0]);
}
sub match_a …
3
votes
How do I replace an asterisk (’*’) using a Perl regular expression?
I'm having no such error. Can you post a complete code sniplet?
…
1
vote
How do I replace an asterisk (’*’) using a Perl regular expression?
It must be a psh issue then. Running script with perl xx.pl does not throw any errors. Thanks for help ;)
Strings do their own escaping of backslashes. In this case you should prob …
13
votes
Is there a Perl function to turn a string into a regexp to use that string as pattern?
I think you are looking for quotemeta
…
7
votes
Is there a Perl function to turn a string into a regexp to use that string as pattern?
in addition to the answer question above, I welcome any feedback on Perl usage in the above as I'm still learning. Thanks
I would advice you not to use prototypes (the ($) …
12
votes
14
votes
Can I use named groups in a Perl regex to get the results in a hash?
Perl uses (?<NAME>pattern) to specify names captures. You have to use the %+ hash to retrieve them.
$variable =~ /(?<count>\d+)/;
print "Count …
0
votes
How can I extract lines of text from a file?
A Perl solution that overwrites the original file.
#!/usr/bin/perl -ni
if(my $num = /^\*\*\* Start/ .. /^\*\*\* Finish/) {
print if $num != 1 and $num + 0 eq $num;
}
…
3
votes
How can I remove the text before and after a particular character?
I'd use this:
$text =~ s/ .*? (keyword) .* /$1/gx;
…
4
votes
How can I match a quote-delimited string with a regex?
I'd say the second one is better, because it fails faster when the terminating " is missing. The first one will backtrack over the string, a potentially expensive operation. An alterna …
2
votes
How can I change extended latin characters to their unaccented ASCII equivalents?
Text::Unaccent or alternatively Text::Una …
5
votes
How can I match double-quoted strings with escaped double-quote characters?
A generic solution(matching all backslashed characters):
/ \A " # Start of string and opening quote
(?: # Start group
[^\\"] # Anythi …
0
votes
Extracting a block of text where the closing expression depends on the opening one.
This splits the file in sections:
my @all = split /(?=^= )/m, join "", <$filehandle>;
shift @all;
…
