Hi,
Why regular expression match('','^[0-9, ]*$') = false ?
* (asterisk) Indicates zero or more occurrences
An empty string must meet the condition.
Regards,
Andrey
Hi,
Why regular expression match('','^[0-9, ]*$') = false ?
* (asterisk) Indicates zero or more occurrences
An empty string must meet the condition.
Regards,
Andrey
Thanks for your reply.
I assumed it should be like this:
match('','^[0-9, ]*$') = true
match('','^[0-9, ]+$') = false