CBA_fnc_strLen

Description

Counts the number of characters in a string.

Parameters

_stringString to measure [String]

Returns

Number of characters in string [Number]

Examples

_length = [""] call CBA_fnc_strLen;
// _result => 0

_length = ["frogs are fishy"] call CBA_fnc_strLen;
// _result => 15

Author

Spooner

Close