I am trying to write a regex that will only allow lowercase letters and up to 10 characters
what I have so far looks like this
pattern: /^[a-z]{0,10}+$/
this does not work/compile. I had a working one that would just allow lowercase letters which was this
pattern: /^[a-z]+$/
but I need to limit the number of characters to 10. Thanks for your help!