String pattern matching.
// String pattern matching.
var s := 'DWScript';
PrintLn('Matches "*Script": ' + s.Matches('*Script').ToString);
PrintLn('StrMatches("hello", "h*o"): ' + StrMatches('hello', 'h*o').ToString);
// OUTPUT
// Matches "*Script": True
// StrMatches("hello", "h*o"): True
Matches "*Script": True
StrMatches("hello", "h*o"): True