-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe8.cpp
104 lines (87 loc) · 1.76 KB
/
e8.cpp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// -Enter text ,,,,? whitespace- --- (? to quit) " - don't use,,,,,, the as-if rule." ??!XXX-
// There are only two kinds of languages: languages that people complain about, and languages that people don't use.
#include "../std_lib.h"
using namespace std;
void replace_punctuation (string &s)
{
unordered_map<char, char> char_map = {
{';', ' '},
{':', ' '},
{',', ' '},
{'.', ' '},
{'?', ' '},
{'!', ' '},
{'(', ' '},
{')', ' '},
{'\"', ' '},
{'{', ' '},
{'}', ' '},
{'<', ' '},
{'>', ' '},
{'/', ' '},
{'&', ' '},
{'$', ' '},
{'@', ' '},
{'#', ' '},
{'%', ' '},
{'^', ' '},
{'*', ' '},
{'|', ' '},
{'~', ' '},
// {'-', ' '},
};
for (auto &cm : char_map)
{
replace(s.begin(), s.end(), cm.first, cm.second);
}
for (int i {0} ; i < s.size() ; i++)
{
if (s.at(i) == '-')
{
if (i > 0 && i < s.size() - 1 && isalpha(s.at(i - 1)) && isalpha(s.at(i + 1)))
{
continue;
}
else
{
s.at(i) = ' ';
}
}
}
}
void replace_strings (string &s)
{
unordered_map<string, string> en_map = {
{"don't", "do not"},
{"can't", "cannot"},
};
for (auto &item : en_map)
{
if (s.find(item.first) != string::npos)
{
s.replace(s.find(item.first), item.first.size(), item.second);
}
}
}
void string_to_lowercase (string &s)
{
for (char &c : s)
{
c = char(tolower(c));
}
}
int main ()
{
cout << "Enter text to replace_punctuation punctuation with whitespace (q to quit): " << endl;
for (string line ; getline(cin, line) ;)
{
if (line.size() == 1 && tolower(line.at(0) == 'q'))
{
exit(EXIT_SUCCESS);
}
replace_strings(line);
replace_punctuation(line);
string_to_lowercase(line);
cout << line << endl;
}
}