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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:18:26+00:00 2026-05-23T10:18:26+00:00

I am having a problem with a generic regex that matches (sort of) a

  • 0

I am having a problem with a generic regex that matches (sort of) a typical string of the form

... "field1" "field2" "field3" "field4" ...

What I want to do is, of course, get each of these fields separately. Because the fields can contain any character, I am using a “catch-all” regex of the form

... \"(.*?)\" +\"(.*?)\" +\"(.*?)\" +\"(.*?)\" + ...

The problem is, instead of producing 4 different groups, Java gives me just one, which is merges those 4 above, i.e. I get a single field:

field1" "field2" "field3" "field4

instead of

field1
field2
field3
field4

I have even tried doing things like \”([^\”]*)\” for each of the fields, but the result is the same.

How could I get these 4 fields separately?

  • 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-23T10:18:27+00:00Added an answer on May 23, 2026 at 10:18 am

    Each call to matcher.find() will move to the next match:

    String input = "... \"field1\" \"field2\" \"field3\" \"field4\" ...";
    Matcher matcher = Pattern.compile("\"(.*?)\"").matcher(input);
    while (matcher.find())
        System.out.println(matcher.group(1));
    

    or, if you really want to capture all four in one match:

    Matcher matcher = Pattern.compile("\"(.*?)\".*?\"(.*?)\".*?\"(.*?)\".*?\"(.*?)\".*?").matcher(input);
    if (matcher.find()) {
        System.out.println(matcher.group(1));
        System.out.println(matcher.group(2));
        System.out.println(matcher.group(3));
        System.out.println(matcher.group(4));
    }
    

    Both produce the same output, which is:

    field1
    field2
    field3
    field4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are having problem with the server migration. We have one application that are
I'm having a problem to create a generic View to represent NotFound pages. The
I have the presumably common problem of having elements that I wish to place
I'm having a problem writing a generic method to retrieve AD Groups or Users
I'm having a problem with a Web Control that is dynamically created and inserted
Having some image problem with Interop.Word and C#. I want to add an image
I'm having a problem with a generic class I'm creating in Scala. I have
I've been trying to create my generic ReadOnlyCheckBox style/template but I'm having a problem
I am having a problem that I can't seem to figure out. What I
The problem that I'm having is when running my android app, if I run

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.