Function template erase_all_regex
boost::algorithm::erase_all_regex — Erase all regex algorithm.
Synopsis
template<typename SequenceT, typename CharT, typename RegexTraitsT,
typename RegexAllocatorT>
void erase_all_regex(SequenceT & Input,
const reg_expression< CharT, RegexTraitsT, RegexAllocatorT > & 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