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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:21:25+00:00 2026-06-12T18:21:25+00:00

In pre-final drafts of C++11, a range-based for loop could specify the range to

  • 0

In pre-final drafts of C++11, a range-based for loop could specify the range to iterate over via a pair of iterators. This made it easy to iterate over all matches for a regular expression. The ability to specify a range using a pair of iterators was later removed, and it is not present in C++11. Is there still a straightforward way to iterate over all matches for a particular regular expression? I’d like to be able to do something like this:

std::regex begin(" 1?2?3?4* ");
std::regex end;

for(auto& match: std::pair(begin, end)) process(*match);

Is there support for this kind of thing in C++11?

  • 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-12T18:21:27+00:00Added an answer on June 12, 2026 at 6:21 pm

    The problem with doing it for std::pair is that it “works” on a lot of things that aren’t valid ranges. Thus causing errors.

    C++11 doesn’t come with a built-in solution for this. You can use Boost.Range’s make_iterator_range facility to build one easily. Then again, it’s not exactly difficult to do manually:

    template<typename T>
    class IterRange
    {
      T start;
      T end;
    public:
      IterRange(const T &start_, const T &end_) : start(start_), end(end_) {}
    
      T begin() {return start;}
      T end() {return end;}
    };
    
    template<typename T> IterRange<T> make_range(const T &start, const T &end) {return IterRange<T>(start, end);}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the pre ARC era, I could override retain and release and log the
Pre-Honeycomb (Android 3), each Activity was registered to handle button clicks via the onClick tag
This is what I'm trying to do: /** * <pre> * {@code * &#64;XmlRootElement
In this example: class A { public A() { // pre-init1 // post-init1 }
private class ExecuteLocations extends AsyncTask<String, Void, Void>{ private final ProgressDialog dialog = new ProgressDialog(ListProfiles.this);
I want to redo my mathematics, since I honestly feel deprived. I'm a pre-final
Pre-compiled headers seem like they can save a lot of time in large projects,
I'm trying to pre-populate create defect popup and I'm not clear on what key/values
I've added a pre-build action for an ASP.NET web control (server control) project, that
I want to pre-append some text a a CSV file that is created by

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.