I'm trying to match a string that looks something like this:

<$Fexample text in here>>

with this expression:

<\$F(.+?)>{2}

However, there are some cases where my backreferenced content includes a ">", thus something like this:

<$Fexample text in here <em>>>

only matches example text in here <em in the backreference. What do I need to do to conditionally return a correct backrefernce with or without these html entities?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

You can add start and end anchors to the regex as:

^<\$F(.+?)>{2}$
link|improve this answer
yep, you was 35 sec. faster +1 vote. – Bart Aug 31 '10 at 6:24
I don't know if you can assume this from the question, else dropping the ? would suffice – CurtainDog Aug 31 '10 at 6:37
I forgot to mention the absence of anchors is intentional. The string may appear anywhere within the line. – Levi McCallum Aug 31 '10 at 9:52
feedback

Try

<\$F(.+?)>>(?!>)

The (?!>) forces only the last >> in a long sequence of >>>..>>> will be matched.


Edit:

<\$F(.+?>*)>>

Also works.

link|improve this answer
In case you are wondering, that's negative lookahead. See: Lookaround – NullUserException Aug 31 '10 at 6:24
+1: But I think <\$F(.+?)>>+ would be more performant as there's no backtracking. – CurtainDog Aug 31 '10 at 6:35
@Curtain: But then the extra > won't be in the capture group. – KennyTM Aug 31 '10 at 6:38
Ah of course. My bad :( – CurtainDog Aug 31 '10 at 7:29
feedback

Please note than tu truly do what (I think) you want to do, you would have to interpret well-formed bracket expressions, which is not possible in a regular language.

In other words, <$Fexample <tag <tag <tag>>> example>> oh this should not happen> will return example <tag <tag <tag>>> example>> oh this should not happen as the capture group.

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.