Matching a Pattern, Forms

Working on Matching a Pattern exercise. In this code, what does the + sign do? pattern=“[a-zA-Z0-9]+” all other parts are explained well. Thanks :slight_smile:

[a-zA-Z0-9]+ will match 1 or more alphanumeric characters.