Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-line solution with lambda and regex solution in Creative category for Secret Message by bsquare
import re
find_message = lambda text: re.sub(r"[a-z0-9]|[^\w]", "", text)
Sept. 18, 2019