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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:23:14+00:00 2026-06-13T12:23:14+00:00

I have a scenario where I want to do a nested expression matching in

  • 0

I have a scenario where I want to do a nested expression matching in Java.

Consider the following expression:

SUM_ALL(2:3,4:5)>20

where SUM_ALL has a reserved operator meaning in the application. Now, I want to extract the operator name and its arguments from a given expression. For doing the same, I have defined my pattern expression as follows:

Pattern testPattern = Pattern.compile("[^a-zA-Z]*([a-zA-Z_]+)\\s*\\(\\s*([0-9:,]+)\\s*\\).*");

This works fine if the expression is limited simply to the above. Here is the output for the same:

Group 1: SUM_ALL
Group 2: 2:3,4:5

Now, in a given expression, I may not be aware of the number of such operators present. For example consider the following case:

SUM_ALL(4:5,6:7)>MAX(2:3,4:4)+MIN(3:4,5:7)

Now, I want to extract each of the above operators and their respective arguments to perform the calculation according to their reserved meaning and then evaluate a simple math expression.

If there were a nesting capability in the Java pattern matcher it would have helped to extract the operators one by one by considering the rest of the expression once an operator is resolved. I know it is possible to do it by capturing the rest of the expression in a separate group and then running the matcher on that group value and keep doing it until we reach the end of the expression, but I would be more interested to know if the pattern-matcher has an inherent functionality for the same.

  • 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-13T12:23:15+00:00Added an answer on June 13, 2026 at 12:23 pm

    You can use code like this:

    String str = "SUM_ALL(4:5,6:7)>MAX(2:3,4:4)+MIN(3:4,5:7)";
    Matcher m = 
        Pattern.compile("(?i).*?([a-z_]+)\\s*\\(\\s*([\\d:,]+)\\s*\\)").matcher(str);
    while (m.find())
       System.out.printf("%s :: %s%n", m.group(1), m.group(2));
    

    OUTPUT:

    SUM_ALL :: 4:5,6:7
    MAX :: 2:3,4:4
    MIN :: 3:4,5:7
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my winform application I have the following scenario: I want to get multiple
I have the following scenario where I want to pass in string and a
I have following class hierarchy scenario; Class A has a method and Class B
I have the following scenario: I want to pass a parameter to a page
I have a scenario where I want to prove a lemma including a number
I have a scenario where I want to reduce the margin of a Button
I have a scenario where i want to match specific word and then match
I have a scenario where I want to be able to SELECT rows from
I have a scenario where I want to toggle series based on checkbox selection.
I have a simple scenario where i want to output only json to the

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.