equalsStrict: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{MacroFunction |name=equalsStrict |proposed=false |trusted=false |description= This function checks for equality between all of the passed in values. Unlike {{func|equals}}...") |
Bubblobill (talk | contribs) m (added logical category) |
||
Line 32: | Line 32: | ||
}} | }} | ||
[[Category:Macro Function]] | [[Category:Macro Function]] | ||
[[Category:Logical Function]] | |||
[[Category:String Function]] | [[Category:String Function]] |
Revision as of 11:39, 9 February 2021
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