Hi Andrew,
Please try with this code.
BEGIN
IF ( match_regex($INPUT, '[:alnum:]+', null) =1)
RETURN TRUE;
ELSE
RETURN FALSE;
END
I hope this will work. If you need only alphabets use [:alpha:] instead for [:alnum:].
Thanks & Regards,
Ramana.
Hi Andrew,
Please try with this code.
BEGIN
IF ( match_regex($INPUT, '[:alnum:]+', null) =1)
RETURN TRUE;
ELSE
RETURN FALSE;
END
I hope this will work. If you need only alphabets use [:alpha:] instead for [:alnum:].
Thanks & Regards,
Ramana.