Alpha Numeric with International characters with space
This matches any letter, number, or space in most languages.
- [...] -> Match with conditions
- [a|b] -> Match 'a' OR 'b'
- \p{L} -> Match any letter in any language
- \p{N} -> Match any number in any language
- \s -> Match a space
- /g -> Don't stop after first match
- /u -> Support unicode pattern matching