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>