BIS fnc splitString: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *arma3 * * *\| *([0-2]\.[0-9]{2}) * " to "|game1= arma3 |version1= $1 ")
(fixed description and parameter)
Line 6: Line 6:
|gr1= Strings
|gr1= Strings


|descr= Split spring according to given separators
|descr= Splits given string according to given separator(s).


|s1=[stringToSplit, separators, byStr] call [[BIS_fnc_splitString]]
|s1=[stringToSplit, separators, byWord] call [[BIS_fnc_splitString]]


|p1= stringToSplit: [[String]]
|p1= stringToSplit: [[String]]


|p2= separators: [[String]] - (Optional, default "") each letter in it '''is''' a separator if ''byStr'' is [[false]]; not the whole word itself
|p2= separators: [[String]] - (Optional, default "") by default each letter is a separator. If ''byWord'' is set to [[true]], the separator will be treated as whole word


|p3= byStr: [[Boolean]] - (Optional, default [[false]]) use [[splitString]] if set to [[true]]
|p3= byWord: [[Boolean]] - (Optional, default [[false]]) by default uses [[splitString]] behaviour e.g. each letter is a separator. If set to [[true]], the separator will be treated as whole word


|r1=[[Array]] of [[String|Strings]]
|r1=[[Array]] of [[String|Strings]]

Revision as of 16:14, 12 July 2021

Hover & click on the images for description

Description

Description:
Splits given string according to given separator(s).
Execution:
call
Groups:
Strings

Syntax

Syntax:
[stringToSplit, separators, byWord] call BIS_fnc_splitString
Parameters:
stringToSplit: String
separators: String - (Optional, default "") by default each letter is a separator. If byWord is set to true, the separator will be treated as whole word
byWord: Boolean - (Optional, default false) by default uses splitString behaviour e.g. each letter is a separator. If set to true, the separator will be treated as whole word
Return Value:
Array of Strings

Examples

Example 1:
["this is a test", " "] call BIS_fnc_splitString; // returns ["this", "is", "a", "test"]
Example 2:
["this is a test", "st"] call BIS_fnc_splitString; // returns ["hi"," i"," a ","e"]
Example 3:
["this is a test", "is"] call BIS_fnc_splitString; // returns ["th"," "," a te","t"]
Example 4:
["this is a test", "is", true] call BIS_fnc_splitString; // returns ["th"," "," a test"]

Additional Information

See also:
splitStringtoArraytoString

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