File: regexplain.cc

package info (click to toggle)
c%2B%2B-annotations 13.02.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,576 kB
  • sloc: cpp: 25,297; makefile: 1,523; ansic: 165; sh: 126; perl: 90; fortran: 27
file content (36 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <string>
#include <iostream>
#include <regex>
#include <iterator>

using namespace std;

//code
bool modify(string const &match);
size_t replace(string &target, string::iterator begin, string match);

int main()
{
    string target("... oh, when the Saints, ...");

    regex re("\\w+");
    smatch match;
    size_t offset = 0;
    while (true)
    {
        auto begin = target.begin() + offset;
        if (not regex_search(string::const_iterator(begin),
                             target.cend(), match, re))
            break;

        size_t pos = match.position(0);

        offset += pos +
                modify(match[0]) ?
                    replace(target, begin + pos,  match[0])
                        :
                    match.length(0);
    }
    cout << "new text: " << target << '\n';
}
//=