Like Operator in X++ AX 2009
Views (3691)
we can use it for strings in MS Dynamics AX like this :
static void LikeTest()
{
str str;
;
str="expiry";
if(str like "exp*")
info('"like work ");
}
{
str str;
;
str="expiry";
if(str like "exp*")
info('"like work ");
}

Like
Report
*This post is locked for comments