Search Results

4
votes

How to master Regular Expressions?

Besides those already mentioned, you can try the Regex Coach. I've heard good things about it. …
4
votes

How to master Regular Expressions?

Now we've given lots of pointers for learning more about regular expressions, it's probably worth quoting Jamie Zawinski: Some people, when confronted with a problem, think "I know, I'l …
0
votes

Is there a way, using regular expressions, to match a pattern for text outside of quotes?

This really depends on if you allow nested quotes or not. In theory, with nested quotes you cannot do this (regular languages can't count) In practice, you might manage if you can c …
0
votes

Regular Expression to Find/Replace in a Fix Length File

Something like this: sed 's/^\(.\{12\}\).\{6\}\(.*\)$/\1010107\2/' should do the trick (escaped for command line use) …
0
votes

Regular expression explained with words

Edi Weitz's regex coach does this, and more. …
1
vote

Why are people using regexp for email and other complex validation?

On factor: the set of people who understand how to write a regular expression is very much larger than the set of people who understand the formal constraints on regular languages. Same goes for n …