Tests if any given characters is in string
#include "String and File String.au3" _StringInCharacters( $sString, $sCharacters [, $bCaseSensitive = False] ) |
$sString | String with characters to test |
$sCharacters | String with characters to use for testing |
$bCaseSensitive | False = Case insensitive, True = Case sensitive |
boolean value | True = one or more characters are in string, False = Not |
_StringInCharacters( "this is a string", "ts" ) ; True