I am trying to use string.Remove to remove all occurrences of ” in my html, but I forgot how to tell it to use ” as a character instead of its usual meaning.
Thanks.
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.
You have to escape it with
\, so write\"instead of"where you mean".string.Remove removed part of the string based on start index, and length, so that is not what you are actually looking for, but replace will help you to get rid of all
"‘s.