-3

I have this regex expression ^[?+ A-zA-Z0-9]*$, but it's not clear what + and * means. I searched on the Internet, but I did not find a clear explanation. Thanks a lot.

skr
  • 2,146
  • 19
  • 22
RInfo
  • 79
  • 1
  • 8

1 Answers1

2

They are quantifiers for repeating the patterns before them.

http://www.regular-expressions.info/repeat.html

Frank R.
  • 1,732
  • 18
  • 21