Core Function isAlphaNumeric
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> isAlphaNumeric( <expression> ) </pre> === Description === Checks if string contains only AlphaNumeric(A-Z, 0-9), Characters. === Parameters === ==== expression ==== Th...")
Newer edit →
(Created page with "<pre> isAlphaNumeric( <expression> ) </pre> === Description === Checks if string contains only AlphaNumeric(A-Z, 0-9), Characters. === Parameters === ==== expression ==== Th...")
Newer edit →
Revision as of 19:19, 1 December 2011
isAlphaNumeric( <expression> )
Contents |
Description
Checks if string contains only AlphaNumeric(A-Z, 0-9), Characters.
Parameters
expression
The string to use.
Return Value
Success: Returns 1.
Failure: Returns 0.
Remarks
None.
Example
$str = "The quick brown fox"; MsgBox( isAlphaNumeric($str) );