config / name: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|s1= +" to "|s1= ")
m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ")
Line 25: Line 25:
|p1= config: [[Config]]
|p1= config: [[Config]]


|p2= name: [[String]]
|p2= name: [[String]]


|r1=[[Config]] - config entry
|r1=[[Config]] - config entry

Revision as of 23:04, 19 June 2021

Hover & click on the images for description

Description

Description:
Returns config entry with given name (alias for config >> name, slightly slower but with higher precedence).
Not to be confused with division operator /.
Groups:
Config

Syntax

Syntax:
config / name
Parameters:
config: Config
name: String
Return Value:
Config - config entry

Examples

Example 1:
configFile / "CfgVehicles";

Additional Information

See also:
configFilemissionConfigFilecampaignConfigFileconfigNameconfig >> namecountgetArraygetTextgetNumberinheritsFromisArrayisClassisNumberisTextselect

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 Apr 1, 2014 - 00:02
ffur2007slx2_5
(Arma 3 1.14) config / name can be composed to config >> name String or Array format via BIS_fnc_configPath. E.g. [(configFile/"ATMineCrater"/"MissileCircleDust"),""] call BIS_fnc_configPath; // return: "configfile >> "ATMineCrater" >> "MissileCircleDust"" [(configFile/"ATMineCrater"/"MissileCircleDust"),[]] call BIS_fnc_configPath; // return: ["configfile","ATMineCrater","MissileCircleDust"]