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

  • Home
  • SEARCH
  • 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 8376445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:26:02+00:00 2026-06-09T15:26:02+00:00

How do I convert 1,,2’3,4′ into a list? Commas separate the individual items, unless

  • 0

How do I convert "1,,2'3,4'" into a list? Commas separate the individual items, unless they are within quotes. In that case, the comma is to be included in the item.

This is the desired result: ['1', '', '2', '3,4']. One regex I found on another thread to ignore the quotes is as follows:

re.compile(r'''((?:[^,"']|"[^"]*"|'[^']*')+)''')

But this gives me this output:

['', '1', ',,', "2'3,4'", '']

I can’t understand, where these extra empty strings are coming from, and why the two commas are even being printed at all, let alone together.

I tried making this regex myself:

re.compile(r'''(, | "[^"]*" | '[^']*')''')

which ended up not detecting anything, and just returned my original list.

I don’t understand why, shouldn’t it detect the commas at the very least? The same problem occurs if I add a ? after the comma.

  • 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-09T15:26:03+00:00Added an answer on June 9, 2026 at 3:26 pm

    Instead of a regular expression, you might be better off using the csv module since what you are dealing with is a CSV string:

    from cStringIO import StringIO
    from csv import reader
    
    file_like_object = StringIO("1,,2,'3,4'")
    csv_reader = reader(file_like_object, quotechar="'")
    for row in csv_reader:
        print row
    

    This results in the following output:

    ['1', '', '2', '3,4']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Convert 20-JAN-2012 into 01/20/2012 . The solution should work in IE and FF latest
Convert JPG image to PNG I have to convert a jpg image into png
How do I convert a 2D mesh of triangles into quadrilaterals? Is this the
I convert my wave file into a mp3 file by the following code: internal
I want to convert a video, say catch.avi , into its frames (as images)
i convert a mp3 file into byte array and i read from byte array
convert datetime format yyyy-mm-dd hh:mm:ss (Might be a string) into UTC, Looking into DateTime
I need to convert latitude/longitude coordinates into Easting/Northing coordinates in the Alberta 10 TM
Convert the grammar below into Chomsky Normal Form. Give all the intermediate steps. S
I convert the secretkey into bytes with following code SecretKey key = KeyGenerator.getInstance(DES).generateKey(); byte[]

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.