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&
result = subject.replace(/("[^"]+?),([^"]*?")/img, "$1,$2");
This will work properly with your example, the only catch is it will not work if you have multiple , inside of the ". If you need it to work with multiple , inside of the " then take a look at this for a more complete way to parse CSV data with javascript.