a == b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(103 intermediate revisions by 16 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|sortKey= #


|1.00|= Game version
|game1= ofp
____________________________________________________________________________________________
|version1= 1.00


| Check if valuea is equal to valueb. |= Description
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


|''' ''valuea'' == ''valueb'' '''|= Syntax
|game3= arma1
|p1 = valuea: [[Number]], [[Group]], [[Side]], [[String]], [[Object]], [[Structured Text]], [[Config]], [[Display]] or [[Control]]
|version3= 1.00


|p2 = valueb: [[Number]], [[Group]], [[Side]], [[String]], [[Object]], [[Structured Text]], [[Config]], [[Display]] or [[Control]]
|game4= arma2
| [[Boolean]] |= Return value
|version4= 1.00
____________________________________________________________________________________________
|x1 = [[if]] ([[player]] <nowiki>==</nowiki> [[leader grp|leader]] [[group]] [[player]]) [[then]] {[[hint]] "You are the leader of your group."} [[else]] {[[hint]] "Someone else is the boss"}


|x2 = [[if]] ([[name]] [[player]] <nowiki>==</nowiki> "Billy") [[then]] {[[hint]] "Hello Billy, how are you?"}
|game5= arma2oa
| |= See also
|version5= 1.50


}}
|game6= tkoh
|version6= 1.00
 
|game7= arma3
|version7= 0.50


<h3 style="display:none">Notes</h3>
|gr1= Math
<dl class="command_description">
|gr2= Variables
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on August 14, 2006 - 14:03</dd>
<dt class="note">'''[[User:Hoz|hoz]]'''</dt><dd class="note">
'''''Comments from before the template conversion.'''''


Does not work with the types [[Boolean]] and [[Array]].
|descr= Check if ''a'' is equal to ''b''. String comparison is case-'''in'''sensitive  - use [[isEqualTo]] if case sensitivity is needed.
{{Feature|important|''a'' and ''b'' types '''must''' match: comparing e.g [[String]] with [[Number]] is invalid.}}


i.e. the arguments:
|s1= a [[a == b|==]] b


? MyBoolean <nowiki>==</nowiki> true : [[hint]] "This is a test."
|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]]
{{!}}}


and
|p2= b: identical to ''a''<nowiki/>'s type


? MyArray <nowiki>==</nowiki> [] : [[hint]] "This is a test."
|r1= [[Boolean]]


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


Instead of the first line use:<br>
|x2= <sqf>"MyRabbit" == "MYRABBIT"; // returns true</sqf>
? MyBoolean : [[hint]] "This is a test."


The workaround for the second line is:<br>
|x3= <sqf>if (alive _unit1 == alive _unit2) then { hint "Both units are either dead or both alive" };</sqf>
? ([[count]] MyArray) <nowiki>==</nowiki> 0 : [[hint]] "This is a test."
</dd>


<!-- Note Section END -->
|seealso= [[a != b|!=]] [[Operators]] [[isEqualTo]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
|user= ffur2007slx2_5
|timestamp= 20140415101300
|text= 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>
It is recommended to use [[isEqualTo]] for all types comparison, which is more functional and as fast as operator.
For multiple comparisons:
<sqf>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
</sqf>
And we can use such workaround instead of using [[BIS_fnc_arrayCompare]] or [[BIS_fnc_areEqual]]
}}


[[Category:Scripting Commands|#]]
</dl>
[[Category:Scripting Commands OFP 1.96|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands ArmA|#]]
[[Category:Command_Group:_Math|#]]

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