I'm attempting to write a regex, but am failing miserably.
This might be a very silly problem, but what I need is to match a string of at least one character and a max of 80.

What I have now is:
Code:
/^.{1,80}/
I'm confused.

Thanks.