Write the regular expression that matches all alphabetic characters in a string. Use the character class \w in your expression.
txt = "**^&$Regular#$%Expressions$%$$%^**"
pattern = "yourregularexpressionhere"
" ".join(re.findall(pattern, txt)) ➞ "Regular Expressions"
import re from the code.