Need RegEx to find a string NOT containing a .
Posted: Mon Dec 07, 2009 8:11 am
I have an HTML document that contains ~300 instances of this string:
I need to search and find--one at a time, so I can manually edit the markup as I go--each instance that is NOT preceded by a period.
Ex:
Is found,
Is not.
Am I asking for too much or can this be done?
Thanks,
Jeff
Code: Select all
</p>\n </div>Ex:
Code: Select all
{a-z,A-Z,0-9}</p>\n </div>Code: Select all
.</p>\n </div>Am I asking for too much or can this be done?
Thanks,
Jeff