I need to remove a doubled letter from a string using regex operations in java. Eg: PRINCEE -> PRINCE APPLE -> APLE
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Simple Solution (remove duplicate characters)Like this:
Output:
Not just any Chracters, Letters onlyAs @Jim comments correctly, the above matches any double character, not just letters. Here are a few variations that just match letters:
References:For additional reference:
|
|||||
|
|
This can be done simply by iterating over the String instead of having to resort to regexes.
|
|||||||||||||
|
|
If you want to replace just duplicate ("AA"->"A", "AAA" -> "AA") use
To replace triplicates etc use: To replace only a single dupe is a long string (AAAA->AAA, AAA->AA) use: |
||||
|
|