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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:13:33+00:00 2026-06-13T22:13:33+00:00

I have a CSV with which some of the data fields happen to contain

  • 0

I have a “CSV” with which some of the data fields happen to contain the comma delimiter as in the second row of the following sample data.

"1","stuff","and","things"
"2","black,white","more","stuff"

I can’t change the source data and I don’t know how to str.split() and not split in the value “black,white”.

Ways I’ve approached my problem:

  1. I looked at partition() and don’t see how that would benefit me.
  2. I’m sure a regex would capture data properly but I’m not sure how to tie one into splitting.
  3. Since every row in the source will always have the same number of fields I thought maybe setting maxsplit would help but talked myself out of that with the thinking that it would still split within “black,white” and I would end up loosing the last value (which would be “stuff” in this case).

Certainly this is easy to overcome so I’m looking forward to learning something new!

Your help is greatly appreciated.

  • 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-13T22:13:35+00:00Added an answer on June 13, 2026 at 10:13 pm

    Commas outside the strings are always followed by double-quotes. Just split on ," instead of just , (or even ",")

    >>> x = '"2","black,white","more","stuff"'
    >>> x
    '"2","black,white","more","stuff"'
    >>> x.split(',"')
    ['"2"', 'black,white"', 'more"', 'stuff"']
    >>> [y.strip('"') for y in x.split(',"')]
    ['2', 'black,white', 'more', 'stuff']
    

    Of course, edit for efficiency

    YevgenYampolskiy’s suggestion of shlex is also an alternative.

    >>> x = '"2","black,white","more","stuff"'
    >>> x
    '"2","black,white","more","stuff"'
    >>> import shlex
    >>> y = shlex.shlex(x)
    >>> [i.strip('"') for i in y if i != ',']
    ['2', 'black,white', 'more', 'stuff']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code which reads every row of a CSV file and if
I have some .csv files which I'm using as part of a test bench.
I am processing some CSV file which i have copied in Bin folder of
Little Background: I have csv file which has lots of rows and each row
I have a CSV file which has the following format: id,case1,case2,case3 Here is a
I have an R file which imports a file, does some data manipulation, and
I have unpredictable frequency of Incoming csv data file which I need to store
I have an .sql file which contains some data like first_name, last_name, email etc.
I have data in a database that needs to be exported to CSV. Some
I'm trying to insert some data into a table from a csv document which

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.