I have a string in format:
Rooms available: Master bedroomDining roomLiving room
I want to convert this string into like:
Rooms available: Master bedroom, Dining room, Living room
So, inserting a ', ' (comma and space) in between each lowercase_char[here]UPPERCASE_CHAR
Getting the lowercase_charUPPERCASE_CHAR is easy but can't figure out how to insert ', ' in between them.
Anyone?