Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Function template erase_all_regex

boost::algorithm::erase_all_regex — Erase all regex algorithm.

Synopsis

// In header: <boost/algorithm/string/regex.hpp>


template<typename SequenceT, typename CharT, typename RegexTraitsT> 
  void erase_all_regex(SequenceT & Input, 
                       const basic_regex< CharT, RegexTraitsT > & Rx, 
                       match_flag_type Flags = match_default);

Description

Erase all substrings, matching given regex, from the input. The input string is modified in-place.

Parameters:

Flags

Regex options

Input

An input string

Rx

A regular expression


PrevUpHomeNext