RegEx for matching “A-Z, a-z, 0-9, _” and “.”

后端 未结 5 2041
耶瑟儿~
耶瑟儿~ 2021-02-01 14:13

I need a regex which will allow only A-Z, a-z, 0-9, the _ character, and dot (.) in the input.

I tried:

[A-Za-z0-9_.] 

But, it did not

5条回答
提交回复
热议问题