BIS fnc trimString: Difference between revisions
| m (Text replacement - "<h3 style="display:none">Bottom Section</h3>" to "") | Lou Montana (talk | contribs)  m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects? in MP|Multiplayer Effects(...) | ||
| Line 1: | Line 1: | ||
| {{Function | {{Function| arma3|1.00|gr1 = Strings| Get a substring out of the string.| [someText, beginning, length] call [[BIS_fnc_trimString]]|p1= someText: [[String]] - source string|p2= beginning: [[Number]] (Optional, default 0) - start index; indexing starts at 0|p3= length: [[Number]] (Optional, default end of string) - end index. A negative number means X chars ''from the string end''| [[String]]|x1= <code>["dreaded_is_the_man", 0, 6] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "dreaded"}}</code>|x2= <code>["dreaded_is_the_man", 15] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "man"}}</code>|x3= <code>["dreaded_is_the_man"] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "dreaded_is_the_man"}}</code>|}} | ||
| | arma3  | |||
| |1.00 | |||
| |gr1 = Strings  | |||
| | Get a substring out of the string.  | |||
| | [someText, beginning, length] call [[BIS_fnc_trimString]]  | |||
| |p1= someText: [[String]] - source string  | |||
| |p2= beginning: [[Number]] (Optional, default 0) - start index; indexing starts at 0  | |||
| |p3= length: [[Number]] (Optional, default end of string) - end index. A negative number means X chars ''from the string end''  | |||
| | [[String]]  | |||
| |x1= <code>["dreaded_is_the_man", 0, 6] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "dreaded"}}</code>  | |||
| |x2= <code>["dreaded_is_the_man", 15] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "man"}}</code>  | |||
| |x3= <code>["dreaded_is_the_man"] [[call]] [[BIS_fnc_trimString]]; {{codecomment|// will return "dreaded_is_the_man"}}</code> | | |||
| }} | |||
| <h3 style="display:none">Notes</h3> | <h3 style="display:none">Notes</h3> | ||
Revision as of 09:49, 18 January 2021
Description
Syntax
- Syntax:
- [someText, beginning, length] call BIS_fnc_trimString
- Parameters:
- someText: String - source string
- beginning: Number (Optional, default 0) - start index; indexing starts at 0
- length: Number (Optional, default end of string) - end index. A negative number means X chars from the string end
- Return Value:
- String
Examples
- Example 1:
- ["dreaded_is_the_man", 0, 6] call BIS_fnc_trimString; // will return "dreaded"
- Example 2:
- ["dreaded_is_the_man", 15] call BIS_fnc_trimString; // will return "man"
- Example 3:
- ["dreaded_is_the_man"] call BIS_fnc_trimString; // will return "dreaded_is_the_man"
Additional Information
- See also:
- See also needed
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
Notes
- Posted on August 24, 2017 - 15:45 (UTC)
- R3vo
- 
"test" select [0,4];Result: 0.0007 ms
 ["test",0,4] call BIS_fnc_trimString;Result: 0.013 ms
 The first method is about 18 times faster.
 
	