Manuals/calci/EXACT

From ZCubes Wiki
Revision as of 13:33, 15 August 2018 by Devika (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
EXACT (Text1,Text2)


  • and are text string.

Description

  • This function checks the two text string values are identical or not.
  • This function will give the result in a logical values.
  • The result is TRUE when the two strings are similar and the result is FALSE when the two strings are different.
  • function is the similar to the comparison operator (==).
  • So we can use the operator(==) instead of this function.
  • The string values we have to give with in double quotes.

Examples

  1. EXACT("life","life") = true
  2. EXACT("life","Life") = false
  3. EXACT("LIFE","Life") = false
  4. EXACT("l ife","life") = false
  5. EXACT("45","45") = true
  6. EXACT("7","-7") = false

Related Videos

EXACT

See Also

References