Skip to content

Commit 2087de1

Browse files
committed
Add note that non-greedy regular expressions are not supported to function help
1 parent 9db8e02 commit 2087de1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/function_help/regexp_match

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Returns true if any part of a string matches the supplied regular expression.
77
<p><h4>Arguments</h4>
88
<!-- List args for functions here-->
99
<i> string</i> &rarr; is string. The string to test against the regular expression.<br>
10-
<i> regex</i> &rarr; is string. The regular expression to test against. Backslash characters must be double escaped (eg "\\s" to match a white space character).<br>
10+
<i> regex</i> &rarr; is string. The regular expression to test against. Backslash characters must be double escaped (eg "\\s" to match a white space character). Non-greedy regular expressions are not supported.<br>
1111

1212
<p><h4>Example</h4>
1313
<!-- Show example of function.-->

resources/function_help/regexp_replace

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Returns a string with the supplied regular expression replaced.
77
<p><h4>Arguments</h4>
88
<!-- List args for functions here-->
99
<i> string</i> &rarr; is string. The start string.<br>
10-
<i> regex</i> &rarr; is string. The regular expression to replace. Backslash characters must be double escaped (eg "\\s" to match a white space character).<br>
10+
<i> regex</i> &rarr; is string. The regular expression to replace. Backslash characters must be double escaped (eg "\\s" to match a white space character). Non-greedy regular expressions are not supported.<br>
1111
<i> after</i> &rarr; is string. The string that will replace any matching occurences of the supplied regular expression. Captured groups can be inserted into the replacement string using \\1, \\2, etc. <br></p>
1212

1313
<p><h4>Example</h4>

resources/function_help/regexp_substr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Returns the portion of a string which matches a supplied regular expression.
77
<p><h4>Arguments</h4>
88
<!-- List args for functions here-->
99
<i> string</i> &rarr; is string. The input string.<br>
10-
<i> regex</i> &rarr; is string. The regular expression to match against. Backslash characters must be double escaped (eg "\\s" to match a white space character).<br>
10+
<i> regex</i> &rarr; is string. The regular expression to match against. Backslash characters must be double escaped (eg "\\s" to match a white space character). Non-greedy regular expressions are not supported.<br>
1111

1212
<p><h4>Example</h4>
1313
<!-- Show example of function.-->

0 commit comments

Comments
 (0)