string = "abcABC";
 
result = Regex Match( string, Pat Regex( "[aBc]+" ) );
Show( string, result );
/ *returns string = "abcABC"
result = {"abcABC"}*/
 
result = Regex Match( string, Pat Regex( "[cba]+" ), NULL, MATCHCASE );
Show( string, result );
/* returns string = "abcABC"
result = {"abc"}*/

Help created on 9/19/2017