a == b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " |game1= ofp |version1= 1.00 |game2= arma1 |version2= 1.00 |game3= arma2 |version3= 1.00 |game4= arma2oa |version4= 1.51 |game5= tkoh |version5= 1.00 |game6= arma3 |version6= 0.50 " to " |game1= ofp |version1= 1.00 |game...)
m (Some wiki formatting)
 
(35 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command
|sortKey= #


|game1= ofp
|game1= ofp
Line 25: Line 27:
|gr2= Variables
|gr2= Variables


|descr= Check if argument <tt>a</tt> is equal to argument <tt>b</tt>.
|descr= Check if ''a'' is equal to ''b''. String comparison is case-'''in'''sensitive  - use [[isEqualTo]] if case sensitivity is needed.
Both arguments need to be of the same [[:Category:Data Types|data type]].
{{Feature|important|''a'' and ''b'' types '''must''' match: comparing e.g [[String]] with [[Number]] is invalid.}}
{{Feature|Informative|Please note that [[String]] comparison is '''case-insensitive'''.<br>
If you need case-sensitive comparison, use [[isEqualTo]].}}


|s1= a '''{{=}}{{=}}''' b
|s1= a [[a == b|==]] b


|p1 = a: [[Number]], [[String]], [[Group]], [[Side]], [[Object]], [[Structured Text]], [[Config]], [[Display]], [[Control]], [[Location]], [[Diary Record]] (since Arma 3 v2.00), [[Namespace]] (since Arma 3 v2.00), [[Boolean]] (since Arma 3 v2.00)
|p1= a:
{{{!}} class="wikitable"
! Introduced in
! colspan="5" {{!}} {{GVI|ofp|1.00}}
! colspan="4" {{!}} {{GVI|arma1|1.00}}
! {{GVI|arma1|1.08}}
! colspan="3" {{!}} {{GVI|arma3|2.00}}
{{!}}-
! Possible Type
{{!}} [[Number]]
{{!}} [[Side]]
{{!}} [[String]]
{{!}} [[Object]]
{{!}} [[Group]]
{{!}} [[Structured Text]]
{{!}} [[Config]]
{{!}} [[Display]]
{{!}} [[Control]]
{{!}} [[Location]]
{{!}} [[Diary Record]]
{{!}} [[Namespace]]
{{!}} [[Boolean]]
{{!}}}


|p2 = b: [[Number]], [[String]], [[Group]], [[Side]], [[Object]], [[Structured Text]], [[Config]], [[Display]], [[Control]], [[Location]], [[Diary Record]] (since Arma 3 v2.00), [[Namespace]] (since Arma 3 v2.00), [[Boolean]] (since Arma 3 v2.00)
|p2= b: identical to ''a''<nowiki/>'s type


|r1= [[Boolean]]
|r1= [[Boolean]]


|x1 = <code>[[if]] ([[player]] == [[leader]] [[group]] [[player]]) [[then]] {
|x1= <sqf>if (player == leader group player) then
[[hint]] "You are the leader of your group.";
{
} [[else]] {
hint "You are the leader of your group.";
[[hint]] "Someone else is the boss";
}
};</code>
else
{
hint "Someone else is the boss";
};</sqf>


|x2 = <code>"MyRabbit" == "MYRABBIT"; {{cc|returns true}}</code>
|x2= <sqf>"MyRabbit" == "MYRABBIT"; // returns true</sqf>


|x3 = Since Arma 3 v2.00<code>[[if]] ([[alive]] _unit1 [[==]] [[alive]] _unit2) [[then]] {[[hint]] "Both units are either dead or both alive"};</code>
|x3= <sqf>if (alive _unit1 == alive _unit2) then { hint "Both units are either dead or both alive" };</sqf>


|seealso= [[!=]], [[Operators]], [[isEqualTo]]
|seealso= [[a != b|!=]] [[Operators]] [[isEqualTo]]
}}
}}


<dl class="command_description">
{{Note
<dd class="notedate">Posted on Apr 15, 2014 - 15:34</dd>
|user= ffur2007slx2_5
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
|timestamp= 20140415101300
<dd class="note">
|text= For script comparison we need to detect whether scripts are running in advance, then compose both into string:
For script comparison we need to detect whether scripts are running in advance, then compose both into string:
<sqf>if (scriptDone _var0) then [{false},{(str _var0) == (str _var1)}];</sqf>
<code>[[if]] ([[scriptDone]] _var0) [[then]] [{[[false]]},{([[str]] _var0) == ([[str]] _var1)}];</code>
   
   
It is recommended to use [[isEqualTo]] for all types comparison, which is more functional and as fast as operator.
It is recommended to use [[isEqualTo]] for all types comparison, which is more functional and as fast as operator.
For multiple comparisons:
For multiple comparisons:
<code>fnc_areEqual = {
<sqf>fnc_areEqual = {
[[private]] ["_b", "_var1", "_var2"];
private ["_b", "_var1", "_var2"];
_b = [[true]];
_b = true;
[[for]] [{ _i = 1 }, { _i < ([[count]] _this) && _b }, { _i=_i + 1 }] [[do]] {
for [{ _i = 1 }, { _i < (count _this) && _b }, { _i=_i + 1 }] do {
_var1 = _this [[select]] (_i-1);
_var1 = _this select (_i-1);
_var2 = _this [[select]] _i;
_var2 = _this select _i;
[[if]] (!(_var1 [[isEqualTo]] _var2)) [[then]] { _b = [[false]]; };
if (!(_var1 isEqualTo _var2)) then { _b = false; };
};
};
_b
_b
};
};
["A","a","a"] [[call]] fnc_areEqual; {{cc|false}}</code>
["A","a","a"] call fnc_areEqual; // false
</sqf>
And we can use such workaround instead of using [[BIS_fnc_arrayCompare]] or [[BIS_fnc_areEqual]]
And we can use such workaround instead of using [[BIS_fnc_arrayCompare]] or [[BIS_fnc_areEqual]]
}}
</dl>
</dl>
[[Category:Scripting Commands|#]]
{{GameCategory|arma1|Scripting Commands|sortKey=#}}
{{GameCategory|arma2|Scripting Commands|sortKey=#}}
{{GameCategory|arma3|Scripting Commands|sortKey=#}}

Latest revision as of 00:57, 14 May 2023

Hover & click on the images for description

Description

Description:
Check if a is equal to b. String comparison is case-insensitive - use isEqualTo if case sensitivity is needed.
a and b types must match: comparing e.g String with Number is invalid.
Groups:
MathVariables

Syntax

Syntax:
a == b
Parameters:
a:
Introduced in Logo A0.png1.00 Logo A1 black.png1.00 Logo A1 black.png1.08 Arma 3 logo black.png2.00
Possible Type Number Side String Object Group Structured Text Config Display Control Location Diary Record Namespace Boolean
b: identical to a's type
Return Value:
Boolean

Examples

Example 1:
if (player == leader group player) then { hint "You are the leader of your group."; } else { hint "Someone else is the boss"; };
Example 2:
"MyRabbit" == "MYRABBIT"; // returns true
Example 3:
if (alive _unit1 == alive _unit2) then { hint "Both units are either dead or both alive" };

Additional Information

See also:
!= Operators isEqualTo

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
ffur2007slx2_5 - c
Posted on Apr 15, 2014 - 10:13 (UTC)
For script comparison we need to detect whether scripts are running in advance, then compose both into string:
if (scriptDone _var0) then [{false},{(str _var0) == (str _var1)}];
It is recommended to use isEqualTo for all types comparison, which is more functional and as fast as operator. For multiple comparisons:
fnc_areEqual = { private ["_b", "_var1", "_var2"]; _b = true; for [{ _i = 1 }, { _i < (count _this) && _b }, { _i=_i + 1 }] do { _var1 = _this select (_i-1); _var2 = _this select _i; if (!(_var1 isEqualTo _var2)) then { _b = false; }; }; _b }; ["A","a","a"] call fnc_areEqual; // false
And we can use such workaround instead of using BIS_fnc_arrayCompare or BIS_fnc_areEqual