Using prxchange, how can I replace the : in the below string with a space. This is only an example of the string, so to make it as dynamic as possible please. i.e. the string may not be in this exact order, or it may be longer/shorter. I only want to remove the colon between 3Sbvx6822:Mcnt8969, and leave the rest. have: {"var1":"0","var2":"3Sbvx6822:Mcnt8969","var3":"0","var4":"0","var5":"0"} want: {"var1":"0","var2":"3Sbvx6822 Mcnt8969","var3":"0","var4":"0","var5":"0"} using the below code partially worked, but removed 3Sbvx6822: rather than just the : prxchange('s/(\w+:)//oi', -1,trim(keyvaluepairs)) Any help is appreciated. Cheers.
... View more