find_nonalp

find_nonalp(text)

Extract Non Alphanumeric characters.

Parameters

text: str Text selected to apply transformation

Examples:

sentence="Twitter has lots of @ and # in posts.(general tweet)"
find_nonalp(sentence)
    >>> ['@', '#', '.', '(', ')']