Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8641221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:28:09+00:00 2026-06-12T11:28:09+00:00

I need a regex expression in C# which can remove any number of double

  • 0

I need a regex expression in C# which can remove any number of double quotes coming in my string, it is a csv file where after reading from StreamReader I want to replace all double quotes coming in my string. First row is header and second is data. For ex:

"E-mail","First Name","Last Name","Company"
"san@test.com","sanjay","sen","this is my "test" company"

So ideally regex should give following output :

"E-mail","First Name","Last Name","Company"
"san@test.com","sanjay","sen","this is my test company "

So double quotes removed from column "this is my "test" company" and resultant into "this is my test company"

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T11:28:11+00:00Added an answer on June 12, 2026 at 11:28 am

    You should try to fix the source of improperly escaped strings instead of mucking around with a regex. If you can’t do that and are desperate to get something done, one quick and dirty approach would be to remove quotes that don’t border on commas or start/end of string:

    resultString = Regex.Replace(subjectString, "(?<!,|^)\"(?!,|$)", "");
    

    This assumes that you’re handling one CSV row at a time. If you have the entire file in a single string, then use RegexOptions.Multiline as the third parameter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Which regular expression can I use to match (allow) any kind of letter from
This is probably simple, but I can't figure this out: I need regex expression
I want to write a regular expression which can match following specification for string
I need a regular expression for c# which can match following pattern abc1abcd 1abcdefg
I need to create a regular expression that allows a string to contain any
Possible Duplicate: Regular Expression to escape double quotes inside single quotes I need a
This sounds simple but my regex knowledge is limited. I need an expression to
I need a regex to count the number of columns in a pipe delimited
I need a RegEx that can handle an integer between 1 - 999 or
I need a Regex I think to see if a string is only a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.