I have a string which has a format like this :
{u city : u Zurich , u name : u Hauptbahnhof , u address : u Test address, C106, Bahnhofsstrasse }
I need to remove all the " u "
(with the spaces) and replace the ", u "
(with the spaces) with a line breaker, but i have no idea how i could do that.
Is it possible with sed?
Output should be like
{city :Zurich
name :Hauptbahnhof
address :Test address, C106, Bahnhofsstrasse }
Thank you guys