equalsStrict: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Text replacement - "source>" to "syntaxhighlight>")
m (Text replacement - "<source" to "<syntaxhighlight")
 
Line 7: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
equalsStrict(s1, s2, ...)
equalsStrict(s1, s2, ...)
</syntaxhighlight>
</syntaxhighlight>
Line 14: Line 14:


|example=
|example=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: species = "duck"]
[h: species = "duck"]
[r: equalsStrict(species, "Duck")]
[r: equalsStrict(species, "Duck")]
Line 21: Line 21:
</syntaxhighlight>
</syntaxhighlight>
'''Returns:'''
'''Returns:'''
<source lang="mtmacro">
<syntaxhighlight lang="mtmacro">
0
0
1
1

Latest revision as of 18:24, 14 March 2023

equalsStrict() Function

This function checks for equality between all of the passed in values. Unlike equals() this function can only be used for string values and is case-sensitive.

Usage

equalsStrict(s1, s2, ...)

Parameters

  • s1+ - String

Example

[h: species = "duck"]
[r: equalsStrict(species, "Duck")]
[r: equalsStrict(species, "duck")]
[r: equalsStrict(species, "Chicken")]

Returns:

0
1
0

See Also