this works ```"hello world".matches(Regex("([A-Za-...
# announcements
n
this works
Copy code
"hello world".matches(Regex("([A-Za-z ])*"))
but notice the regexp is a bit different
👍 2