BIS fnc splitString: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
m (Text replacement - "<h3 style="display:none">Bottom Section</h3>" to "") |
||
Line 31: | Line 31: | ||
}} | }} | ||
[[Category:Functions|{{uc:splitString}}]] | [[Category:Functions|{{uc:splitString}}]] | ||
[[Category:{{Name|arma3}}: Functions|{{uc:splitString}}]] | [[Category:{{Name|arma3}}: Functions|{{uc:splitString}}]] |
Revision as of 01:27, 18 January 2021
Description
Syntax
- Syntax:
- [stringToSplit, separators, byStr] call BIS_fnc_splitString
- Parameters:
- stringToSplit: String
- separators: String - (Optional, default "") each letter in it is a separator if byStr is false; not the whole word itself
- byStr: Boolean - (Optional, default false) use splitString if set to true
- 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