anndict.utils.normalize_string

anndict.utils.normalize_string#

anndict.utils.normalize_string(s)[source]#

Removes non-alphanumeric characters and converts to lowercase.

Parameters:
s str

String to be normalized.

Return type:

str

Returns:

Normalized string.

Examples

normalize_string("Hello, World!")
> "hello world"