i want to write a regex where it should ignore tag which is present between the string.
e.g., here is my string
<p>hi this is a reg<del>U</del><ins>u</ins>lar expression match</p>
i want a regular expression to find "regular" from above string,
the match should find whole word including tags i.e., reg<del>U</del><ins>u</ins>lar
here case can be ignored.
plz help me.. thanks in advance
tag, so my match will be just 'regular' not 'regUular'– Hulk Aug 21 '12 at 09:08` tag you want to ignore with its contents? And all other tags should be treated like they weren't even there?– Tim Pietzcker Aug 21 '12 at 09:14