4
votes
Are explicitly typed regexes allowed as keys in Perl YAML dump?
From man perldata:
Hashes are unordered collections of scalar values indexed by their associated string key.
The …
4
votes
0
votes
Search and replace text contents of a tag
I think we're lacking a bit of context here. Is the data HTML, XML, or just fragments of text with tags?
If it is HTML or XML, as mentioned often, regexps are not safe, unless you control e …
1
vote
Checking version number validity with Perl
You could do it with a single regexp, or you could do it in 2 steps, the second step being to check that the first number doesn't start with a 0.
BTW, I tend to use [0-9] instead of \d for …
4
votes
Should I use \d or [0-9] to match digits in a Perl regex?
It seems to me very dangerous to use \d, It is a poor design decision in the language, as in most cases you want [0-9]. Huffman-coding would dictate the use of \d for ASCII numbers.
Most o …
13
votes
How can I write a long regular expression so it fits on the screen?
As mentioned previously, it looks like you are looking for the x modifier.
That modifier ignores all whitespaces in the regexp, and allow comments (starting with #).
In your case it's a bi …
2
votes
How to change this regular expression to be case insenstive (looking for src tag)
It seems to me that if you want to process HTML, the best way to go is to use a real HTML parser.
Although I am not familiar with Java, there seems to be quite a few to choose from: …
1
vote
Beginner Regex: Multiple Replaces
You can do this the quick and dirty way, or the quick and clean way:
In both cases you need a hash word => replacement
With the quick and dirty way, you then build t …
3
votes
How do I create a Perl regular expression to remove all characters before the first “<”?
The '.' in a character class is not a meta-character. Also you want s///, not tr, which replaces single characters. so s/^.+(?=<)// should work, although p …
