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 7176357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:29:26+00:00 2026-05-28T16:29:26+00:00

I have a CSV file and we know excel does its thing with commas

  • 0

I have a CSV file and we know excel does its thing with commas in a field by enclosing them in double quotation marks for instance i have a file

Product Name,Product Code
Product 1,AAA
"Prod,A,B",BBB

How can I use RegExp to replace the quotation marks with “.” instead but only within quotation marks so i get

Product Name,Product Code
Product 1,AAA
Prod.A.B,BBB

as output

  • 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-05-28T16:29:27+00:00Added an answer on May 28, 2026 at 4:29 pm

    CSV handling functions (fgetcsv(), fputcsv()) are much better for this – they will handle edge cases and will likely be far more reliable than any regex you can come up with.

    // Open the file
    $fp = fopen($pathToCsvFile, 'r+');
    
    // Create an array of modified data
    $tmp = array();
    while (($row = fgetcsv($fp, 8192)) !== FALSE) {
      foreach ($row as &$field) $field = str_replace(',', '.', $field);
      $tmp[] = $row;
    }
    
    // Truncate the file and put the pointer at the beginning
    ftruncate($fp, 0);
    rewind($fp);
    
    // Write the modified data back and close the file
    foreach ($tmp as $row) {
      fputcsv($fp, $row);
    }
    fclose($fp);
    

    EDIT Following your comment about not wanting to read from/write to disk, you can do this:

    // Lets say the raw CSV data is held in this variable as a string
    $rawCsvData = 'Product Name,Product Code
    Product 1,AAA
    "Prod,A,B",BBB';
    
    // Open a virtual file pointer to memory and fill it with your data
    $fp = fopen('php://memory', 'w+');
    fwrite($fp, $rawCsvData);
    
    // Start from the beginning of the pointer
    rewind($fp);
    
    // ... INSERT CODE FROM ABOVE HERE (minus the fopen()/fclose())
    
    $modifiedCsvData = stream_get_contents($fp);
    fclose($fp);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have a program that's dynamically generating an Excel file and a csv. The excel
Say I have a CSV file that has | as a delimiter. I know
How does one open a semicolon delimited CSV file with VBA in Excel 2000?
Basically my problem is this: I have a CSV excel file with info on
I have CSV file and Macro in VBA. I want to open CSV file
How to read and import .csv file in groovy on grails. I have .csv
I have a .csv file that is frequently updated (about 20 to 30 times
I have a CSV file that holds about 200,000 - 300,000 records. Most of
I have a csv file of the format: 270291014011 ED HARDY - TRUE TO
I have my CSV file imported as such: records = FasterCSV.read(path, :headers => true,

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.