BIS fnc filterString: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= ([^ ]+)(\]\]|\}\}), *(\[\[|\{\{)" to "|seealso= $1$2 $3")
m (Text replacement - "\|seealso= ([^ ]+)(\]\]|\}\}), *(\[\[|\{\{)" to "|seealso= $1$2 $3")
Line 20: Line 20:
|x2= <code><nowiki>[</nowiki>"Player 1", "Player"] [[call]] [[BIS_fnc_filterString]]; {{cc|returns "Player"}}</code>
|x2= <code><nowiki>[</nowiki>"Player 1", "Player"] [[call]] [[BIS_fnc_filterString]]; {{cc|returns "Player"}}</code>


|seealso= [[find]] [[BIS_fnc_inString]] [[splitString]], [[joinString]]
|seealso= [[find]] [[BIS_fnc_inString]] [[splitString]] [[joinString]]
}}
}}

Revision as of 13:58, 1 July 2022

Hover & click on the images for description

Description

Description:
Removes characters from a string based on the list of allowed characters.
Execution:
call
Groups:
Strings

Syntax

Syntax:
[ text, filter ] call BIS_fnc_filterString
Parameters:
text:: String - Text to filter.
filter (Optional): String - Filter of allowed characters (default: A-Z, a-z, 0-9 and "_")
Return Value:
String - Filtered text with only the allowed characters supplied in the filter.

Examples

Example 1:
["Player 1 @%!@$"] call BIS_fnc_filterString; // returns "Player1"
Example 2:
["Player 1", "Player"] call BIS_fnc_filterString; // returns "Player"

Additional Information

See also:
find BIS_fnc_inString splitString joinString

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