From c4c0755493cc9e6dacc89236c3870227b7935662 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 22 Nov 2017 00:07:24 -0500 Subject: [PATCH] another regex example --- _articles/miscellaneous/custom-fields.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_articles/miscellaneous/custom-fields.md b/_articles/miscellaneous/custom-fields.md index aa711d31..425916e1 100644 --- a/_articles/miscellaneous/custom-fields.md +++ b/_articles/miscellaneous/custom-fields.md @@ -41,3 +41,9 @@ Prefixing your custom field's name with `regex=` allows you to perform [regular Example: `regex=pin` will match all of the examples above. + +You can use any complex regular expression. + +Example: + +`regex=^first.*name` will match "firstName", "First_name", and "First Name".