String funcs - Contains and IndexOf (#2298)

* Contains and index of string functions

* Clippy and fmt
This commit is contained in:
k-brk
2020-08-04 08:36:51 +02:00
committed by GitHub
parent 028fc9b9cd
commit c48c092125
5 changed files with 513 additions and 3 deletions

View File

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