summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTP Honey <tphoney@users.noreply.github.com>2016-08-04 13:26:23 +0100
committerGitHub <noreply@github.com>2016-08-04 13:26:23 +0100
commit15bf66a99b51423e2535a4bf236e19a64d4e92c7 (patch)
treec6b1596da11a197b3d95b5a3fe8cec1e2a462fa1
parentd2d9c300a7954cf4d2a962f69f2250d39261c8b3 (diff)
parentdb92a082c15c11d4d069a821be8aaddc5537020b (diff)
Merge pull request #625 from MiamiOH/master
Added documentation for regexpescape function.
-rw-r--r--README.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown
index 158f55b..6352473 100644
--- a/README.markdown
+++ b/README.markdown
@@ -900,6 +900,10 @@ Passing a third argument will cause the generated range to step by that interval
*Type*: rvalue.
+#### `regexpescape`
+
+Regexp escape a string or array of strings. Requires either a single string or an array as an input. *Type*: rvalue.
+
#### `reject`
Searches through an array and rejects all elements that match the provided regular expression. For example, `reject(['aaa','bbb','ccc','aaaddd'], 'aaa')` returns ['bbb','ccc']. *Type*: rvalue.