up vote 1 down vote favorite
1
share [g+] share [fb]

I have the following regex, where I want to match any explicit dot followed by one or more:

<b> <i> <u> </b> </i> </u>

I would like this Regex to NOT match this pattern if it occurs at the end of the string.

string = Regex.Replace(string, "\.((<[\/biu]+>)+)", ".$1||")

Ex:

This <b>should match.</b> allright.

This <i><b>shouldn't match.</b></i>
link|improve this question

78% accept rate
feedback

3 Answers

"\.((<[\/biu]+>)+)(?!$)"

Use the negative lookahead assertion with the $ symbol to check for end of line. (Remember, $ matches end of line so you want to not match that.)

link|improve this answer
Thanks, but it still matches ".</b>" in the following: This <i><b>shouldn't match.</b></i> – Vincent Jan 28 '09 at 21:56
You could always make it non-greedy by introducing the ? symbol. That would probably make it not match what you wrote. (I don't have any resource to test with right now) – Evan Fosmark Jan 28 '09 at 22:12
feedback

You could use atomic grouping:

\.(?>(?:<\/?[biu]>)+)(?!$)
link|improve this answer
The question was to match any dot: "\.(?=(?>(?:<\/?[biu]>)+)(?!$))". :-) Otherwise, +1 – Tomalak Jan 28 '09 at 22:31
The OP was capturing the tags and plugging them back in with $1, so he should add capturing parens instead of a lookahead. Also, this is the only answer that corrects the OP's mistake WRT matching the tags. – Alan Moore Jan 28 '09 at 22:57
feedback

Force there to be more items after the last closed element, but make sure they aren't elements themselves.

"\.((<[\/biu]+>)+)[^<>]+"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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