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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:14:26+00:00 2026-06-04T17:14:26+00:00

I have a string like: ‘a, b, c,d e, f,’ I would like to

  • 0

I have a string like:

'a, b, "c,d" e, f,'

I would like to split my string using the comma character as separator, but outside of the brackets. My result object set should contain the following elements:

a
b
"c,d" e
f

How can I achieve this?

  • 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-04T17:14:27+00:00Added an answer on June 4, 2026 at 5:14 pm
    s = 'a, b, "c,d" e, f,';
    console.log(s.match(/("[^"]+"|[^,])+/g));
    

    yields [ 'a', ' b', ' "c,d" e', ' f' ], which has extra spaces, but you can trim them.

    Edit: missed the e… now fixed.

    Explanation:

    • (A|B)+ prefers A (which is a quoted string) instead of B, which is a non-quoted part of the string. It matches "c,d", then because of the + it continues matching e.
    • "[^"]+" matches a " followed by all the non-", followed by a single ".
    • [^,] matches any non-"
    • /regex/g makes global (matches all matches, not just the first)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have string like \LESSING\root\cimv2:Win32_UserAccount.Domain=LESSING,Name=Admin How to convert it to LESSING\Admin using Framework?
I have string looking like this: 'Toy Story..(II) (1995)' I want to split the
I have a string like this: String A: [ 12234_1_Hello'World_34433_22acb_4554344_accCC44 ] I would like
I have string like this: http://someurl.com?someparameter=dhws6sd6cvg and i would like to mach part from
I have string like this: http://someurl.com?test&lettersg and I would like to mach part from
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have string like this 0 0.014E5 and I need it split into a
I have String like this: LODIXAL COMP 15 How can i split it to
I have string like this 24:00:00 and I would like to convert it to
If I have string like combination.py , I want to get the following result

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.