boost.png (6897 bytes) Home Libraries People FAQ More

PrevUpHomeNext

Function template erase_regex

boost::algorithm::erase_regex — Erase regex algorithm.

Synopsis

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

Description

Remove a substring 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

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext