具有至少6个字母(非空格)和1个数字[重复]的字母数字的正则表达式

I want to allow users to fill password with at least 7 character(no limit) that must have 1 numeric and 6 alphabet.

</div>
/^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/  

this is regex for atleast 1 digit in password