Suppose I hvae a match pattern in Ruby regular expression:
VALID_ID = /^[-a-z0-9_.]+$/i
I think it matchs all strings that with characters -
, _
, 0-9
, 'a-z', 'A-Z'. But, I feel confused about the last character .
here. What does it mean? Can you provide some examples to explain it?