Monday, July 8, 2013

X++ LIKE operator

We can use like operator in x++ as below:


static void LikeTest()

    str str;
    ;
    str="expiry";

    if(str like "exp*")
       info('"like work ");
}

 

No comments:

Post a Comment