BIS fnc splitString: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) 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= | |descr= Splits given string according to given separator(s). | ||
|s1=[stringToSplit, separators, | |s1=[stringToSplit, separators, byWord] call [[BIS_fnc_splitString]] | ||
|p1= stringToSplit: [[String]] | |p1= stringToSplit: [[String]] | ||
|p2= separators: [[String]] - (Optional, default "") each letter | |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= | |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 15:14, 12 July 2021
Description
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