skip to Main Content

Javascript – regular expression

regex expression which contains 9 atleast alphabets and 1 digits and the position of alphabets and digit can be anywhere. eg- rahulkumar1 rahul9kumar 1RahulKumar /[A-Za-z]{9,}[0-9]{0,1}/ I have tried using this but it does not worked out.enter image description here

VIEW QUESTION
Back To Top
Search