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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:48:29+00:00 2026-05-27T07:48:29+00:00

The topic is confusing, however for example, final String pattern = (abc); final String

  • 0

The topic is confusing, however for example,

final String pattern = "(abc)";

final String content = "dabcef";

Matcher m = Pattern.compile(pattern).matcher(content);

The m.find() will surely return true.

I want to know if it’s possible to process chars only once, meaning

“dab” -> not found, “cef” -> not found, over.

Thanks!

EDIT:

Actually I want to find all matches instead of only check if matches or not. For example,

abc abc def abc dab cef (actually without spaces)

will be matched by ^(.{3})*?(abc), however only once. And I expect 3 matches.

Thanks!

  • 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-27T07:48:30+00:00Added an answer on May 27, 2026 at 7:48 am

    I found the solution by moving start index. Thank @Oil for the suggestion!

    public static void main(String[] args) {
        final String pattern1 = "^(.{3})*?(abc)";
    
        final String content1 = "efabcabcdabcefaabcdfabce"; // two matches
    
        final String content2 = "abcabcdabcefabc"; // three matches
    
        Matcher mStart = Pattern.compile(pattern1).matcher(content1);
    
        while (mStart.find()) {
            System.out.println(mStart.group(mStart.groupCount()));
            System.out.println(mStart.start() + ", " + mStart.end());
    
            mStart = mStart.region(mStart.end(), mStart.regionEnd());
        }
    
        //-----------------------------
        System.out.println("------------------------");
    
        mStart = Pattern.compile(pattern1).matcher(content2);
    
        while (mStart.find()) {
            System.out.println(mStart.group(mStart.groupCount()));
            System.out.println(mStart.start() + ", " + mStart.end());
    
            mStart = mStart.region(mStart.end(), mStart.regionEnd());
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Reading online about this topic is confusing. Is there a way to cut around
So hopefully that topic isn't too confusing, but basically using VBA within Outlook I
I read few questions here on SO about this topic which seems yet confusing
I tried to search forum topics to find a tutorial that will guide me
topic.php $id = isset($_GET['id']) ? intval($_GET['id']) : 0; $query = mysql_query(SELECT * FROM topics
The topic says the most of it - what is the reason for the
The topic generically says it all. Basically in a situation like this: boost::scoped_array<int> p(new
As topic suggested, how can I unit test a function that does not return
as topic, I am strange that why does the SDK not provide API to
This topic has been scratched once or twice, but I am still puzzled. And

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.