I\'m looking in a string such as:
\"Hello, Tim\" Land of the free, and home of the brave
And I need it to become:
\"Hello&
With the above string as variable html you can use following code:
html
var m = html.match(/"[\s\S]*"/); html = html.replace(m[0], m[0].replace(/,/g, ','));
"Hello, Tim" Land of the free, and home of the brave