isSymbol {qmrparser} | R Documentation |
Is it a symbol?
Description
Checks whether a character is a symbol, a special character.
Usage
isSymbol(ch)
Arguments
ch |
character to be checked |
Details
These characters are considered as symbols:
'!' , '%' , '&' , '$' , '#' , '+' , '-' , '/' , ':' , '<' , '=' , '>' , '?' , '@' , '\' , '~' , '^' , '|' , '*'
Value
TRUE/FALSE, depending on character being a symbol.
Examples
isSymbol('+')
isSymbol('A')
isSymbol('a')
isSymbol('9')
[Package qmrparser version 0.1.6 Index]