Remove a list of unwanted characters from a text string

Hi every one, 

I'm having a text string as example: 

{"Status":"Active","updatedBy":"lynn123","hasAccount":false}

What I expect to have is: 

Status: Active

updatedBy: lynn123

hasAccount: no 

I think for replacing comma with a line-break, char(10) might work, then I will substitute false with "no". But for the rest of characters {,},"", I'm not sure how to remove them all at once. I checked documentary for a!stripWith or a!reject and I think they don't work with a list of characters. 

Hope I can have some suggestions from you,

Thanks a lot!

  Discussion posts and replies are publicly visible