Function Legalinput (s)
{
VAR PATRN = / ^ [^ / s] $ /; // Match any tail is not a blank character, including a string formed by a space, a tab, and a page.
IF (PATRN.EXEC (S)) Return True
Else Return False;
}
script>