BIS fnc trimString: Difference between revisions
| Lou Montana (talk | contribs) m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ") | Lou Montana (talk | contribs)  m (Text replacement - "<dt class="note">([^<>]+) " to "<dt class="note">$1</dt> ") | ||
| Line 30: | Line 30: | ||
| <dl class="command_description"> | <dl class="command_description"> | ||
| <dd class="notedate">Posted on August 24, 2017 - 15:45 (UTC)</dd> | <dd class="notedate">Posted on August 24, 2017 - 15:45 (UTC)</dd> | ||
| <dt class="note">[[User:R3vo|R3vo]] | <dt class="note">[[User:R3vo|R3vo]]</dt> | ||
| <dd class="note"> | <dd class="note"> | ||
| <code>"test" [[select]] [0,4];</code> | <code>"test" [[select]] [0,4];</code> | ||
Revision as of 01:27, 30 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
- 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.
 
	