Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I am trying to match any single lower case letter separated by a colon that repeats itself, say, 5 times (but the last repetition do not have a colon anymore). For example:

h:e:l:l:o

Something like this would work:

[a-z]:{4}[a-z]

Is there a better way to do this? Can I somehow reference the first [a-z] in place of the second [a-z]?

share|improve this question
1  
Should be ([a-z]:){4}[a-z]. – Elbert Alias Feb 17 '11 at 2:48

1 Answer

up vote 0 down vote accepted

Assuming PCRE/Javascript,

(?!:)((^|:)[a-z]){5}
share|improve this answer
Oops. Missed the parenthesis. No, that is not what I want. I'm trying to get rid of the last [a-z] – StackOverflowNewbie Feb 17 '11 at 2:42
Seems like you also missed the point, this regex is using a lookbehind so it eliminates the first [a-z]. Which is all you need to do here to remove the redundant extra [a-z] - In Python/Perl you can create regex references to reuse parts of your regex. (I'm not sure how many other flavors implement this feature though.) – Slomojo Feb 17 '11 at 3:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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