I'm having an issue where i'm trying to search through a nightly outload from a database and delete all instances of a field name and it's contents the field looks something like:
AND street = 'Joshua D. Lampe, MD'
i'm trying to use the following and it's not working:
$currline = preg_replace("/ AND street = '[.+]'/", "", $currline);
any thoughts, suggestions etc... would be helpful, i'm fairly new to regex and am having a hard time w/ it.
thanks