summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Sauermann <6299227+Sauermann@users.noreply.github.com>2022-02-21 09:30:14 +0100
committerMarkus Sauermann <6299227+Sauermann@users.noreply.github.com>2022-02-21 09:37:29 +0100
commit70ae6c21de9fd3f0e00a052b15f70c3667836898 (patch)
tree045b313774d477d90ac5605405069fe0e1c55d0a
parente7a3108d4d575fc6af457b3bac132f8ed4d6e9e3 (diff)
downloadredot-engine-70ae6c21de9fd3f0e00a052b15f70c3667836898.tar.gz
Update doc for match: empty argument doesn't match anything
-rw-r--r--doc/classes/String.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/String.xml b/doc/classes/String.xml
index c1a7a2edda..4ff2d287a1 100644
--- a/doc/classes/String.xml
+++ b/doc/classes/String.xml
@@ -420,14 +420,14 @@
<return type="bool" />
<argument index="0" name="expr" type="String" />
<description>
- Does a simple case-sensitive expression match, where [code]"*"[/code] matches zero or more arbitrary characters and [code]"?"[/code] matches any single character except a period ([code]"."[/code]).
+ Does a simple case-sensitive expression match, where [code]"*"[/code] matches zero or more arbitrary characters and [code]"?"[/code] matches any single character except a period ([code]"."[/code]). An empty string or empty expression always evaluates to [code]false[/code].
</description>
</method>
<method name="matchn" qualifiers="const">
<return type="bool" />
<argument index="0" name="expr" type="String" />
<description>
- Does a simple case-insensitive expression match, where [code]"*"[/code] matches zero or more arbitrary characters and [code]"?"[/code] matches any single character except a period ([code]"."[/code]).
+ Does a simple case-insensitive expression match, where [code]"*"[/code] matches zero or more arbitrary characters and [code]"?"[/code] matches any single character except a period ([code]"."[/code]). An empty string or empty expression always evaluates to [code]false[/code].
</description>
</method>
<method name="md5_buffer" qualifiers="const">