vote up -3 vote down star

Some regexes get re-used an awful lot times...and then there are some favorite ones which serve just a specific purpose.

Some may be blindingly simple ...while some are awfully cumbersome yet achieve the objective. What is your favorite Regex that you have written or come across?

flag
4  
Either close or make CW. – Donut Sep 15 at 17:34
I wouldn't close it. CW would be better – Philippe Leybaert Sep 15 at 17:36
1  
Similar question here - stackoverflow.com/questions/20448/… – Steve Wortham Sep 15 at 17:37

closed as not a real question by jjnguy, tj111, Jay Riggs, Graeme Perrow, Robert Harvey Sep 15 at 17:39

2 Answers

vote up 1 vote down

This regex that checks for whether the length of a string is not a prime number is pretty cool:

^1?$|^(11+?)\1+$
link|flag
2  
Apparently this is something that can work in Perl's regex engine. There's an explanation here... stackoverflow.com/questions/20448/… – Steve Wortham Sep 15 at 17:52
1  
Oh, just to clarify -- what this is really testing is if the length of the string is prime (not if a number is prime). – Steve Wortham Sep 15 at 17:54
vote up 1 vote down

One I use quite often is very simple:

[A-Za-z_][A-Za-z0-9_]*

It matches C identifiers.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.