EndsWithRegexp
EndsWithRegexp("Financial performance", "[abc]") → false
EndsWithRegexp("Dollars (millions)", "[)/]") → trueInputs
Last updated
Checks if a value ends with a search regular expression
EndsWithRegexp("Financial performance", "[abc]") → false
EndsWithRegexp("Dollars (millions)", "[)/]") → trueEndsWithRegexp(string, searchRegexp, [isCaseSensitive])
string - A text value to search in
searchRegexp - A regular expression to search for
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
Last updated