ltrim and rtrim for string (#2262)

* Trim string from left and right

* Move trim to folder

* fmt

* Clippy
This commit is contained in:
k-brk
2020-07-26 20:09:35 +02:00
committed by GitHub
parent 7e2c627044
commit 5e0a9aecaa
9 changed files with 372 additions and 172 deletions

View File

@ -229,7 +229,8 @@ pub(crate) use split::{Split, SplitChars, SplitColumn, SplitRow};
pub(crate) use split_by::SplitBy;
pub(crate) use str_::{
Str, StrCapitalize, StrCollect, StrDowncase, StrFindReplace, StrFrom, StrLength, StrReverse,
StrSet, StrSubstring, StrToDatetime, StrToDecimal, StrToInteger, StrTrim, StrUpcase,
StrSet, StrSubstring, StrToDatetime, StrToDecimal, StrToInteger, StrTrim, StrTrimLeft,
StrTrimRight, StrUpcase,
};
pub(crate) use table::Table;
pub(crate) use tags::Tags;