diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-09 11:48:12 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-09 11:48:12 +0100 |
commit | ffae2cb77bfb3263146a2de0deedf6528d4df461 (patch) | |
tree | 88e4b61087069f8ce5badadbc6264d20b8a051d5 /week-5/StringWeek5.cpp | |
parent | d797758769d033c64babdf77ea6b64262f792b23 (diff) |
repository aanpassen voor oop2
Diffstat (limited to 'week-5/StringWeek5.cpp')
-rw-r--r-- | week-5/StringWeek5.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/week-5/StringWeek5.cpp b/week-5/StringWeek5.cpp deleted file mode 100644 index ae8ba9f..0000000 --- a/week-5/StringWeek5.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include <regex> - -#include "StringWeek5.h" - -void StringWeek5::removeAll(const std::string& remove) { - this->text = std::regex_replace(this->text, std::regex(remove), ""); -} - -const std::string& StringWeek5::getText() const { - return this->text; -} - |