I need to find two adjacent repeating digits in a string and replace with a single one. How to do this in Java. Some examples:
123345 should be 12345 77433211 should be 74321
|
|
I need to find two adjacent repeating digits in a string and replace with a single one. How to do this in Java. Some examples: 123345 should be 12345 77433211 should be 74321
|
|||
|
|
|
|
Probably a replaceAll("(\\d)\\1+", "$1")
So:
will return 74321
Replaces each substring of this string that matches the given regular expression with the given replacement. An invocation of this method of the form str.replaceAll(regex, repl) yields exactly the same result as the expression
Warning: So you need to affect the result of a replaceAll() call to itself to actually update your String with the regexp changes.
|
|||
|
|
|
I finally did it myself. Those who are looking for the solution, this is how I did it:
Even simpler:
|
|||
|
|
This is a regular expression mathing two repeating digits (x being the digit)
|
||
|
|
|
|
using a regex:
that will match exactly 2 repeats.
|
||||||||
|