Hello, at the registration process I want to enforce typing first and last name of the users. For this purpose, I need to write a regex.
What I need is the username should accept any char input but starting with a number like (1sdasd) or an empty string (like pressing space at this field which makes an empty string " ")
What can be the regular expression for it ?
ps: It should accept non-latin chars such as üÜğĞçÇöÖ (ie r'^\w+$', doesnt work)
Thanks