BIS fnc trimString: Difference between revisions
| Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") | Lou Montana (talk | contribs)  m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") | ||
| Line 19: | Line 19: | ||
| |r1= [[String]] | |r1= [[String]] | ||
| |x1= <code>["dreaded_is_the_man", 0, 6] call  | |x1= <code>["dreaded_is_the_man", 0, 6] call BIS_fnc_trimString; {{cc|will return "dreaded"}}</code> | ||
| |x2= <code>["dreaded_is_the_man", 15] call  | |x2= <code>["dreaded_is_the_man", 15] call BIS_fnc_trimString; {{cc|will return "man"}}</code> | ||
| |x3= <code>["dreaded_is_the_man"] call  | |x3= <code>["dreaded_is_the_man"] call BIS_fnc_trimString; {{cc|will return "dreaded_is_the_man"}}</code> | ||
| |seealso= | |seealso= | ||
| Line 35: | Line 35: | ||
| <dd class="note"> | <dd class="note"> | ||
| <code>"test" select [0,4];					{{cc|0.0007 ms}} | <code>"test" select [0,4];					{{cc|0.0007 ms}} | ||
| ["test",0,4]  | ["test",0,4] call [[BIS_fnc_trimString]];	{{cc|0.013 ms}}</code> | ||
| The first method is about '''18 times faster'''. | The first method is about '''18 times faster'''. | ||
Revision as of 21:38, 12 July 2022
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]; // 0.0007 ms ["test",0,4] call BIS_fnc_trimString; // 0.013 msThe first method is about 18 times faster.
 
	
