MATLAB Function Reference |
Determine if input is MATLAB keyword
Syntax
Description
tf = iskeyword('str')
returns logical 1
(true
) if the string str
is a keyword in the MATLAB language and logical 0
(false
) otherwise.
iskeyword str
uses the MATLAB command format.
iskeyword
returns a list of all MATLAB keywords.
Examples
To test if the word while
is a MATLAB keyword,
To obtain a list of all MATLAB keywords,
iskeyword 'break' 'case' 'catch' 'continue' 'else' 'elseif' 'end' 'for' 'function' 'global' 'if' 'otherwise' 'persistent' 'return' 'switch' 'try' 'while'
See Also
isinteger | isletter |
© 1994-2005 The MathWorks, Inc.