Following is an Example of Regular Expressions :
{
TextBuffer txt = new TextBuffer();
str msg = "R12345678";
msg = substr(msg, 2,9);
txt.setText(msg);
txt.regularExpressions(true); // activate regular expr in search
// Regular expression to validate only digits
if (txt.find("^[0-9]+$"))
{
info("string contains only numbers");
}
else
{
info("string contains not only numbers");
}
}
Job-1:
static void TextBuffer_regularExpression(Args _args)
{
TextBuffer txt = new TextBuffer();
str msg = "98797897";
txt.setText(msg);
txt.regularExpressions(true); // activate regular expr in search
// Regular expression to validate only digits
if (txt.find("^[0-9]+$"))
{
info("string contains only numbers");
}
}
{
TextBuffer txt = new TextBuffer();
str msg = "98797897";
txt.setText(msg);
txt.regularExpressions(true); // activate regular expr in search
// Regular expression to validate only digits
if (txt.find("^[0-9]+$"))
{
info("string contains only numbers");
}
}
Job-2:
static void TextBuffer_regularExpression(Args _args){
TextBuffer txt = new TextBuffer();
str msg = "R12345678";
msg = substr(msg, 2,9);
txt.setText(msg);
txt.regularExpressions(true); // activate regular expr in search
// Regular expression to validate only digits
if (txt.find("^[0-9]+$"))
{
info("string contains only numbers");
}
else
{
info("string contains not only numbers");
}
}
No comments:
Post a Comment