Hi,
Today I would like to share a X++ code to validate the special characters from the given string
static void RemoveSpecialCharacters(Args _args)
{str stringVar1,stringVar2;
//String with special characters and numbers
stringVar1= test!@#$%^&*(){}[]|\+-;,.?/~`12344;
//String without Special characters and numbers
stringVar2=strRem(strAlpha(stringVar1),"1234567890");
if(stringVar2!=stringVar1 )
{ throw error("Enter Valid data");
}else
{ info("ok");
}
}
Happy Daxing...........
Today I would like to share a X++ code to validate the special characters from the given string
static void RemoveSpecialCharacters(Args _args)
{str stringVar1,stringVar2;
//String with special characters and numbers
stringVar1= test!@#$%^&*(){}[]|\+-;,.?/~`12344;
//String without Special characters and numbers
stringVar2=strRem(strAlpha(stringVar1),"1234567890");
if(stringVar2!=stringVar1 )
{ throw error("Enter Valid data");
}else
{ info("ok");
}
}
Happy Daxing...........