Skip to content
Advertisement

Using a regular expression to replace upper case repeated letters in python with a single lowercase letter

I am trying to replace any instances of uppercase letters that repeat themselves twice in a string with a single instance of that letter in a lower case. I am using the following regular expression and it is able to match the repeated upper case letters, but I am unsure as how to make the letter that is being replaced lower case.

JavaScript

How can I make the “1” lower case? Should I not be using a regular expression to do this?

Advertisement

Answer

Pass a function as the repl argument. The MatchObject is passed to this function and .group(1) gives the first parenthesized subgroup:

JavaScript

EDIT
And yes, you should use ([A-Z])1 instead of ([A-Z]){2} in order to not match e.g. AZ. (See @bobince’s answer.)

JavaScript

Gives:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement