Hi folks,
I still have a few probs with perl regular expressions in php4.
1) I am trying to anlyse a tag like
/<([>])*>/
but here I encounter the problem that I don't want to end the exp when ">" occurs within "" or ''. How can I acieve this?
2) I am trying to have "%>" on the end of a reg exp. How can I acieve that only this "%>" combination is recognized. currently I am using something like ([>])*
can't I say that something like ([%>])*
Thanx in advance!