Answers for "regex for non alphanumeric characters"

1

regex allow alphanumeric and special characters

/^[ A-Za-z0-9_@./#&+-]*$/
Posted by: Guest on July-13-2020
0

alphanumeric regex validation

validPattern = "^[a-zA-Z0-9]{10}$"; // alphanumeric exact 10 letters
this.projectForm = this.fb.group({
 ...
 CIG: [null, [Validators.required, Validators.pattern(this.validPattern)],
Posted by: Guest on August-04-2021

Code answers related to "regex for non alphanumeric characters"

Browse Popular Code Answers by Language