I need to write a regular expression for this:
This is what I am using, is this correct?
Thanks,
SBsteven
Nevermind, I got it now....
Here is what I do want to filter on:
Here is what I DO NOT want:
I was just told to use this RegEx:
SBsteven
Code:
<SPAN>Employer Service Rep</SPAN>
This is what I am using, is this correct?
Code:
<SPAN>.*</SPAN>
Thanks,
SBsteven
Nevermind, I got it now....
Here is what I do want to filter on:
Code:
<SPAN>Employer Service Rep</SPAN>
Here is what I DO NOT want:
Code:
<SPAN style="CURSOR: hand; COLOR: blue" onclick="appAdminForm.action.value='click_modify';appAdminForm.attrName.value='nwRSCrole';appAdminForm.submit();">Modify </SPAN>
I was just told to use this RegEx:
Code:
<SPAN>.*
SBsteven