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

The Archive Base Latest Questions

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

How to get all matches from a string using regex? I have a string:

  • 0

How to get all matches from a string using regex?
I have a string:

".+(.cpp$|.cxx$|.d$|.h$|.hpp$)"   

and I would like to get only the cpp cxx d h and hpp parts.
EDIT:
So basically I would like to construct regex which would match any string of characters starting with dot and ending with $.
I’ve tried the pattern: "\\.[^$+]+" which is supposed to match dot and everything else except $ and plus one or more times but this gets just the first .cpp part and I need all of them

  • 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-27T17:29:14+00:00Added an answer on May 27, 2026 at 5:29 pm

    Since you mention Qt in your question, here is how you would do it using QRegExp:

    #include <QtCore>
    #include <QtDebug>
    
    int main(int argc, char **argv) {
      QCoreApplication app(argc, argv);
    
      QString target(".+(.cpp$|.cxx$|.d$|.h$|.hpp$)");
      QRegExp pattern("\\.(\\w+)\\$");
    
      QStringList matches;
      int pos = 0;
      while ((pos = pattern.indexIn(target, pos)) != -1) {
        matches << pattern.cap(1);
        pos += pattern.matchedLength();
      }
    
      qDebug() << matches;  // "cpp", "cxx", "d", "h", "hpp"
      return app.exec();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to extract some text from an html file using Regex. I
How can I get the start and end positions of all matches using the
I would need to get a Regular Expression, which matches all Unicode control characters
I'd like to get all the permutations of swapped characters pairs of a string.
I'm trying to extract all matches from a EBML definition, which is something like
I have the following rss feed which I would like to query to get
I need to get all the objects whose id matches a specific pattern .
How can I get all items from a specific calendar (for a specific date).
I'm trying to get all property names / values from an Outlook item. I
Basically I want to retrieve all possible substring matches with n characters from a

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.