From f6c8689303d0e3b246cafee1dd06dbc1fb5d4876 Mon Sep 17 00:00:00 2001 From: Quest Date: Fri, 12 Apr 2019 23:45:07 +0200 Subject: [PATCH] fixup! Builtin string functions - downcase, len, match(regex), replace(regex), trim, upcase. New dependency regex. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8e2976..414f0e9 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,8 @@ This crate offers a set of builtin functions. | upcase | 1 | Returns upper-case version of string | The `min` and `max` functions can deal with a mixture of integer and floating point arguments. -They return the result as the type it was passed into the function. +They return the result as the type it was passed into the function. The regex functions require +feature flag `regex_support`. ### Values