Adds support for trim, left and right trim

This commit is contained in:
Felipe Zimmerle
2015-10-21 14:07:20 -03:00
parent 59af8ab842
commit 17faef565e
6 changed files with 13 additions and 13 deletions

View File

@@ -38,7 +38,7 @@ TrimRight::TrimRight(std::string action)
std::string TrimRight::evaluate(std::string value,
Assay *assay) {
return *this->trim(&value);
return *this->rtrim(&value);
}
} // namespace transformations