I have a string:
"a","b","c"
and I can split those words to:
a b c
using Javascript, but how about:
"a,","b\"","c\,\""
How do I get:
a, b" c,"
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Still not sure if this is one string? But if it is… and this is the only instance of it that you want manipulated, you could use this super convoluted way….
Example: http://jsfiddle.net/jasongennaro/ceVG7/1/