I want to identify two kinds of string: one end with numbers (or not with) by regular expression.
But I can't classify them by \d+$ or ^\D*\d*$ or ^[a-zA-Z]*[0-9]*$
Does anyone can tell me why? and how to solve this problem..?
|
I want to identify two kinds of string: one end with numbers (or not with) by regular expression. But I can't classify them by Does anyone can tell me why? and how to solve this problem..? |
|||||||||||||||
|
|
First your answer is quite incomplete, that makes it quite difficult to answer. Your comment does also not clarify anything. My guess: With your two expressions So, Means, this expression would match.
but not
See it here on Regexr |
||||
|
|
However, both |
|||
|