Origin Ver. 8.1 and SR1:
Operating System: Win XP
The Match method does not work as I would expect, see the following example:
void TestMatch()
{
string str = "abc - 12-34-56 xyz";
if ( str.Match("*??-??-??*", false) )
out_str( "Does match" );
else
out_str( "Does not match" );
}
When I remove the first dash in the string declaration it works.
Is it bug?
--Michael