Level 73
This [A-zÀ-ú]* would match caés
Check this link to stack overflow for more info.
Hi there,
I'm trying to find regex which permit to allow letter, number, dashes, underscores and spaces.
I tryied that.
^[a-zA-Z0-9,.!? ]*$
also that
^[\w\s,.]+$
and PCRE
[^\p{L}\p{P}\p{N}\p{S}\p{M}]
But nothing works to me...
Can you help me please?
Thank you and S.U.+
Please or to participate in this conversation.