Here's the string:
var myString = "apple, 0.90, pear, 1.23, orange, 1.90";
What regular expression do I use to change the string to this:
apple: 0.90, pear: 1.23, orange: 1.90
I want to replace the comma after the end of the fruit to a colon.