# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility
import re
regex = r"^([A-Z][A-Z])"
test_str = ("EPISODE 148: The Flea Party\n"
" \n"
"TAFFY\n"
"Per-fect!\n"
"BENTLEY\n"
"Gotcha!\n"
"MRS M\n"
"Aaaah! I must ask Forsythe not to leave his kitchen cabinets lying around on the floor like this!\n"
"MRS M\n"
"Oh my! I hope my little cherub doesn’t have fleas or I’ll have to take that ribbon right off and put a flea collar on you!\n"
"TAFFY\n"
"Take the ribbon off?\n"
"TAFFY\n"
"Fleas? Please! This is just a common itch, I don’t have fleas.\n"
"BENTLEY\n"
"Oh no? Well you will my friend, you will. And I know just where to find them\n"
"FLEA 1\n"
"Cookie crumb?\n"
"FLEA 2\n"
"Don’t mind if I do.\n"
"MISH\n"
"Moldy macaroon?\n"
"MASH\n"
"Thank you kindly!\n"
"MISH & MASH \n"
"One for me, one for flea.\n"
"MASH\n"
"Enjoy, little dudes!\n"
"MISH\n"
"Ouch! Hey, what was that?!\n"
"MASH\n"
"Ow! Keep yer paws off my hairdo!\n"
"MISH\n"
"Me!? You’re the one pocking my hair!\n"
"MASH\n"
"Are you kidding me?\n"
"MISH\n"
"Liar!\n"
"MASH\n"
"What did you say?\n"
"MISH\n"
"I said…\n"
"MASH\n"
"Moldy macaroon?\n"
"MISH\n"
"Don’t mind if I do.\n"
"FLEA\n"
"HEY LET US OUT!!!\n"
"BENTLEY\n"
"Yeah, yeah, be patient\n"
"FLEA 1\n"
"Oh! Love that new host smell!\n"
"You said it! Let’s settle here!\n"
"BENTLEY\n"
"Look! Fleas! Fleas!!! Whoo whoo whoo, fleas !\n"
"MRS M\n"
"Oh dear! you’re not scratching again are you?\n"
"BENTLEY\n"
"Go ahead, scratch it up! You know you want to.\n"
"MRS M\n"
"Delightful dinero, a discothèque!\n"
"MRS M\n"
"Like summer nights in Salamanca.\n"
"MRS M\n"
"Don’t be a party pooper, Bentley, dance with your little brother!\n"
"Flea\n"
"Earthquake!\n"
"Flea\n"
"Let’s move from this place!\n"
"MRS M\n"
"Coming!\n"
"TAFFY\n"
"Huh. I don’t itch anymore.\n"
"BENTLEY\n"
"Of COURSE you do! You’re covered in flea-AA!\n\n"
"MRS M\n"
"Bentley, now you?! And it looks like you might need more than a flea collar, you may need a HOT FLEA BATH.\n"
"MRS M\n"
"Sorry dear, what was that again? \n"
"TAFFY\n"
"Ah! That will teach you to start a flea fight\n"
"MRS M\n"
"Well if you can’t decide, why not buy BOTH yachts, dear?\n"
"MRS HIGHCOST\n"
"Hello? Are you still there?\n"
"MRS M\n"
"Oh sorry darling. Can you get them in platinum?\n"
"TAFFY\n"
"I love scratching\n"
"TAFFY\n"
"Scratch scratch scratch scratch\n"
"MRS HIGHCOST\n"
"So… Platinum or diamond then?\n"
"MRS M\n"
"Oh sorry dear, let’s have a look in the magazine\n"
"TAFFY\n"
"Here buddy, this will help!\n"
"BENTLEY\n"
"Oh! Itchy wool!\n"
"MRS M \n"
"Well of course matching helicopters! What are we? Cave people?\n"
"FORSYTHE\n"
"I’ve nearly achieved...PERFECTION!\n"
"FORSYTHE\n"
"Out of my kitchen you fleabag!\n"
"MRS M \n"
"Animal control, I have a flea emergency!\n"
"MASH\n"
"There you are! We found you!\n"
"TAFFY\n"
"Found me?\n"
"MASH\n"
"Not you-– them!\n"
"MISH & MASH\n"
"Welcome home fellas!\n"
"See ya!\n"
"ANIMAL CONTROL \n"
"This is worse than the Itchy Dingo Disaster of ‘05.\n"
"TAFFY\n"
"Showtime!\n"
"MRS M \n"
"Oh my hair!\n"
"Oh! What a wonderful haircut for this summer! \n"
"Thank you Taffy-Waffy\n")
subst = " \\1"
# You can manually specify the number of replacements by changing the 4th argument
result = re.sub(regex, subst, test_str, 0, re.MULTILINE)
if result:
print (result)
# Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html