I had been searching a few sources online but none able to tell what this regex term matches for:
regex="^0-"
I knew ^
means starting of the string and 0
is just 0, but what is the meaning of -
carrying behind? If it would mean just a literal char -
, shouldn't it be written as ^0\-
with a slash \
followed by a dash?
Besides, will this regex="Stain"
matches both string:
Stain
and Sub-Stain
?
Thanks Chun Meng