Skip to content

Instantly share code, notes, and snippets.

@elconde
Created September 29, 2010 13:55
Show Gist options
  • Select an option

  • Save elconde/602775 to your computer and use it in GitHub Desktop.

Select an option

Save elconde/602775 to your computer and use it in GitHub Desktop.
import re
RE_NULL = re.compile('\[NULL\]',re.IGNORECASE)
def removeNull(s):
return RE_NULL.sub('',s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment