blob: 054eb31644e530aaa3719673a9a919413f610904 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// file : tests/regex/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <string>
#include <cassert>
#include <iostream>
#include <exception>
#include <libbutl/regex.hxx>
#include <libbutl/utility.hxx> // operator<<(ostream, exception)
using namespace std;
using namespace butl;
// Usage: argv[0] [-ffo] [-fnc] <string> <regex> <format>
//
// Perform substitution of matched substrings with formatted replacement
// strings using regex_replace_ex() function. If the string matches the regex
// then print the replacement to STDOUT and exit with zero code. Exit with
// code one if it doesn't match, and with code two on failure (print error
// description to STDERR).
//
// -ffo
// Use format_first_only replacement flag.
//
// -fnc
// Use format_no_copy replacement flag.
//
int
main (int argc, const char* argv[])
try
{
regex_constants::match_flag_type fl (regex_constants::match_default);
int i (1);
for (; i != argc; ++i)
{
string op (argv[i]);
if (op == "-ffo")
fl |= regex_constants::format_first_only;
else if (op == "-fnc")
fl |= regex_constants::format_no_copy;
else
break;
}
assert (i + 3 == argc);
string s (argv[i++]);
regex re (argv[i++]);
string fmt (argv[i]);
auto r (regex_replace_ex (s, re, fmt, fl));
if (r.second)
cout << r.first << endl;
return r.second ? 0 : 1;
}
catch (const exception& e)
{
cerr << e << endl;
return 2;
}
|