This is maddeningly simple, but I am still stumped as to whether my answer is right.
I want to match a string with following format:
- 70-60
- 50-40
- 100-90
- etc.....
I just started learning about regexes today, and I worked out the following pattern to match the string:
/^[0-9]+-[0-9]+/$
But upon testing it in an online regex testing tool, I found that it doesn't match.
Any pointers that would help me? Thanks a lot in advance.
