Difference between revisions of "Manuals/calci/ISOPERATORSYMBOL"

From ZCubes Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="font-size:30px">'''ISOPERATORSYMBOL(n)'''</div><br/>
+
<div style="font-size:30px">'''ISOPERATORSYMBOL (String)'''</div><br/>
 +
 
 
==Description==
 
==Description==
 
*This function is  one of the group in ISFUNCTIONS.
 
*This function is  one of the group in ISFUNCTIONS.
Line 14: Line 15:
 
#=ISOPERATORSYMBOL(*) = null
 
#=ISOPERATORSYMBOL(*) = null
 
#=ISOPERATORSYMBOL("/") = true
 
#=ISOPERATORSYMBOL("/") = true
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=zcRemtaAMlQ|280|center|Operator}}
 +
 +
==See Also==
 +
*[[Manuals/calci/ISBOOLEAN | ISBOOLEAN]]
 +
*[[Manuals/calci/ISFUNCTION  | ISFUNCTION ]]
 +
  
  
 
==References==
 
==References==
 +
[http://en.wikipedia.org/wiki/Is_functions  Is Function]
  
 
*[[Z_API_Functions | List of Main Z Functions]]
 
*[[Z_API_Functions | List of Main Z Functions]]
  
 
*[[ Z3 |  Z3 home ]]
 
*[[ Z3 |  Z3 home ]]

Latest revision as of 15:17, 7 March 2019

ISOPERATORSYMBOL (String)


Description

  • This function is one of the group in ISFUNCTIONS.
  • The IS FUNCTION is also known as data information functions, data inspection functions or data-testing functions.
  • ISOPERATORSYMBOL function can be used to check the given value is an operator symbol or not.
  • This function gives the result as only TRUE or FALSE.
  • The result is TRUE when the n value is an operator symbol otherwise the result is FALSE.
  • The argument can be blank, or it can contain data such as text, numbers, error values, logical values or any equations.

Examples

  1. =ISOPERATORSYMBOL(5) = false
  2. =ISOPERATORSYMBOL("0") = false
  3. =ISOPERATORSYMBOL("*") = true
  4. =ISOPERATORSYMBOL(*) = null
  5. =ISOPERATORSYMBOL("/") = true

Related Videos

Operator

See Also


References

Is Function