python regex replace all non alphanumeric characters code example Example: python regex replace all non alphanumeric characters import re s = re.sub('[^0-9a-zA-Z]+', '*', s)