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
-
https://www.codecademy.com/resources/docs/general/regular-expressions
-
Regular Expression Language - Quick Reference | Microsoft Learn
[a-zA-Z0-9]+
will match 1 or more alphanumeric characters.