Every line of 'remove non alphanumeric characters python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
48 def strip_non_alphanumeric(string: str) -> str: 49 """Strip string from any non-alphanumeric characters.""" 50 return NON_ALPHANUMERIC_STRIP_RE.sub('', string)