str: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 18: | Line 18: | ||
|gr1= Strings | |gr1= Strings | ||
|descr= Converts any value into a string by placing " and " around the argument. When used on object, object debug name is returned. | |descr= Converts any value into a string by placing " and " around the argument. When used on object, object debug name is returned. | ||
|pr= Before {{arma3}} v1.64 this command didn't escape quote signs {{hl|"}} inside a string properly. | |||
|s1= [[str]] value | |s1= [[str]] value | ||
Line 43: | Line 33: | ||
a = []; | a = []; | ||
ac = 0; | ac = 0; | ||
while {ac < 5} do | while { ac < 5 } do | ||
{ | { | ||
ac = count a; | ac = count a; | ||
Line 51: | Line 41: | ||
</sqf> | </sqf> | ||
| | |x3= <sqf> | ||
str [0, 0, 0] == "[0, 0, 0]"; // false | |||
str [0, 0, 0] == "[0,0,0]"; // true | |||
str ""; // """""" | |||
count str ""; // 2 | |||
str text ""; // "" | |||
count str text ""; // 0 | |||
</sqf> | |||
< | |x4= <sqf> | ||
str objNull; // "<NULL-object>" | |||
str player; // e.g "B Alpha 1-1:1 (PlayerName)" | |||
player setVehicleVarName "PlayerUnit"; | |||
str player; // e.g "PlayerUnit" | |||
</sqf> | |||
|seealso= [[toArray]] [[toString]] [[isText]] [[select]] [[count]] [[find]] [[endl]] [[format]] [[formatText]] | |||
}} | |||
{{Note | |||
|user= Sbsmac | |||
|timestamp= 20090929201700 | |||
|text= When applied to a unit, this returns the variable name that was assigned to the unit in the editor (see also [[vehicleVarName]]). | |||
For example, if you have created a playable unit with the name 'thePlayer' then you can use 'str player' to return "thePlayer". | |||
}} | |||
Revision as of 15:04, 26 August 2022
Description
- Description:
- Converts any value into a string by placing " and " around the argument. When used on object, object debug name is returned.
- Problems:
- Before Arma 3 v1.64 this command didn't escape quote signs " inside a string properly.
- Groups:
- Strings
Syntax
Examples
- Example 1:
- Example 2:
- Example 3:
- Example 4:
- str objNull; // "<NULL-object>" str player; // e.g "B Alpha 1-1:1 (PlayerName)" player setVehicleVarName "PlayerUnit"; str player; // e.g "PlayerUnit"
Additional Information
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
- Posted on Sep 29, 2009 - 20:17 (UTC)
- When applied to a unit, this returns the variable name that was assigned to the unit in the editor (see also vehicleVarName). For example, if you have created a playable unit with the name 'thePlayer' then you can use 'str player' to return "thePlayer".
Categories:
- Scripting Commands
- Introduced with Armed Assault version 1.00
- ArmA: Armed Assault: New Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Strings