[code] -> [code skip-lint]

This commit is contained in:
heppocogne 2024-10-06 08:32:46 +09:00
parent 73950c2192
commit 58cd71a716

View File

@ -616,14 +616,14 @@
<return type="bool" />
<param index="0" name="expr" type="String" />
<description>
Does a simple expression match (also called "glob" or "globbing"), where [code]*[/code] matches zero or more arbitrary characters and [code]?[/code] matches any single character except a period ([code].[/code]). Returns [code]true[/code] if the string matches the pattern [code]expr[/code]. An empty string or empty expression always evaluates to [code]false[/code].
Does a simple expression match (also called "glob" or "globbing"), where [code]*[/code] matches zero or more arbitrary characters and [code]?[/code] matches any single character except a period ([code].[/code]). Returns [code]true[/code] if the string matches the pattern [code skip-lint]expr[/code]. An empty string or empty expression always evaluates to [code]false[/code].
</description>
</method>
<method name="matchn" qualifiers="const">
<return type="bool" />
<param index="0" name="expr" type="String" />
<description>
Does a simple [b]case-insensitive[/b] expression match, where [code]*[/code] matches zero or more arbitrary characters and [code]?[/code] matches any single character except a period ([code].[/code]). Returns [code]true[/code] if the string matches the pattern [code]expr[/code]. An empty string or empty expression always evaluates to [code]false[/code].
Does a simple [b]case-insensitive[/b] expression match, where [code]*[/code] matches zero or more arbitrary characters and [code]?[/code] matches any single character except a period ([code].[/code]). Returns [code]true[/code] if the string matches the pattern [code skip-lint]expr[/code]. An empty string or empty expression always evaluates to [code]false[/code].
</description>
</method>
<method name="md5_buffer" qualifiers="const">