What will be the expression for restricting a user to enter either 5 lines or 375 characters in a scrollable text field?
I tried theese:
([A-Z])\w+
$0</a>
var re,regs,val;
if(OTHER.rawValue!=null)
{
val=OTHER.rawValue;
//re=[a-zA-Z\d\s\-\,\#\.\+]+
//re=/abc(?!$){5}/
re=/\be(\w*)s\b/m{2,10}$;
regs=val.match(re);
if(!regs)
{
fieldname.rawValue="";
xfa.host.messageBox("ANY THING");
xfa.host.setFocus(fieldname)
}
}
re=/abc(?!$){5}/
and many more... but I am not getting exact one to validate either 5 lines or 375 characters