Answers for "regex except alphanumeric"

5

regex to identify numeric and alphanumeric

"^[a-zA-Z0-9_]*$"
Posted by: Guest on December-23-2019
0

regex except alphanumeric validation

string.replace(/[^a-zA-Z0-9_]+/g, '')
Posted by: Guest on August-10-2021

Browse Popular Code Answers by Language