Hi there,
How Regex_search to enable only aphabet (a-z), numeric (0-9) and dot?
ABc is correct
abc333 is correct
abc.999.AC is correct
.ddddd.ddd333 is correct
regards and thanks
Hi @Ibox
You can you try this pattern:
^[a-zA-Z0-9.]+$
you can test this here:
https://regex101.com/
AC
Dear @IboxThis regex pattern allows strings that only consist of the specified characters and ensures that any string with characters outside this set (e.g., special symbols or spaces) will not match.
@Ibox hello try with this : /^[a-zA-Z0-9_.]$/i