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

PrevUpHomeNext

Function template replace_all_regex

boost::algorithm::replace_all_regex — Replace all regex algorithm.

Synopsis

template<typename SequenceT, typename CharT, typename RegexTraitsT, 
         typename FormatStringTraitsT, typename FormatStringAllocatorT> 
  void replace_all_regex(SequenceT & Input, 
                         const basic_regex< CharT, RegexTraitsT > & Rx, 
                         const std::basic_string< CharT, FormatStringTraitsT, FormatStringAllocatorT > & Format, 
                         match_flag_type Flags = match_default|format_default);

Description

Format all substrings, matching given regex, with the specified format. The input string is modified in-place.

Parameters

Flags

Regex options

Format

Regex format definition

Input

An input string

Rx

A regular expression

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext