Search Results

1
vote

Regex to match all HTML tags except <p> and </p>

The original regex can be made to work with very little effort: <(?>/?)(?!p).+?> The problem was that the /? (or \?) gave up what it matched when the ass …
9
votes

How can I find the first occurrence of a pattern in a string from some starting position?

You can't really count with regexes, but you can do something like this: pos $string = $start_from; $string =~ m/\G # anchor to previous pos() ((?:...)*?) # capt …
6
votes

Multi-Line group and search with Regex

Kyle's answer is probably the most perlish, but in case you have it all in one string and want to use a single regex, here's a (tested) solution: (Second update: fixed a bit, now m …
4
votes

Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?

Here you go: $x =~ s/\A\s*(.*?)\s*\z/$1/; …
4
votes

How do I match only fully-composed characters in a Unicode string in Perl?

I think you don't want or need locales for that but, but rather Unicode. If you have decoded a text string, \w will match word characters in any language, \d matches not j …
1
vote

How can I extract and save text using Perl?

When I run your code, but name the input file My1.txt instead of MyFile.txt I get the desired output - except with empty lines, which you can remove by removing the …
1
vote

How can I remove an entire HTML tag (and its contents) by its class using a regex?

In Perl you need the /s modifier, otherwise the dot won't match a newline. That said, using a proper HTML or XML parser to remove unwanted parts of a HTML file is much more ap …