Core Function isSymbol
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> isSymbol( <expression> ) </pre> === Description === Check if string contains only symbol chars. === Parameters === ==== expression ==== The string to use. === Return ...") |
m (1 revision) |
Revision as of 21:40, 11 August 2014
isSymbol( <expression> )
Contents |
Description
Check if string contains only symbol chars.
Parameters
expression
The string to use.
Return Value
Success: Returns 1.
Failure: Returns 0.
Remarks
None.
Example
$str = "The quick brown fox"; MsgBox( isSymbol($str) );