Reg Expression for any printable characters

admin

Administrator
Staff member
Apparently got stuck with the simple task to validate an entry with any PRINTABLE characters using search method. Something like:

if (str.search( . . . ) != -1)
return true;
else
return false;

Any idea would be really appreciated!!!
 
Back
Top