regex to check the string contains only letter and numbers but not only numbers

后端 未结 10 1579
温柔的废话
温柔的废话 2021-02-06 11:31

I need a help with regex which checks the string contains only letter and numbers but not only numbers

Valid

* letters
* 1wret
* 0123chars
* chars0123
*          


        
10条回答
  •  猫巷女王i
    2021-02-06 11:57

    This should do it:

    ^[0-9]*[a-zA-Z]+[a-zA-Z0-9]*$
    

    This requires at least one character of [a-zA-Z].

提交回复
热议问题