Suppose I had the string
1122345
There are two pairs in this string. What's the regular expression for counting the pairs in this string?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Try out this:
please modify the above regex according to your problem.pattern matching if the user enters same digit. \1 matches the first capture group, so the pattern matches whether the digits are repeated in the string. |
|||
|
|