Regular Expressions 101

Community Patterns

Only letters, accents and space

1

Regular Expression
Python

r"
(((?![a-zA--ÿ\u00f1\u00d1\s]).)*$)
"

Description

Regex that catches everything that is not text (including emotes)

Submitted by https://www.linkedin.com/in/devfabriciors/ - 2 years ago