Edit Validate 13 Digits Example 1
Hi All,
In this blog we will see example 1 of Edit Validate
Create Edit Validate
Java
String MCEID = theValue.toString();
if(MCEID.length()!=13)
{
theProperty.addMessage("Please enter MCE engagement of 13 digits");
return false;
}
return true;
Thank you!! Will see you all in next blog post 😊
Comments
Post a Comment