Difference between revisions of "Manuals/calci/EXACT"

From ZCubes Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
<div style="font-size:30px">'''EXACT(t1,t2)'''</div><br/>
 
<div style="font-size:30px">'''EXACT(t1,t2)'''</div><br/>
*<math>t1</math> and <math>t2</math> are text string.
+
*<math>t_1</math> and <math>t_2</math> are text string.
  
  

Revision as of 06:38, 14 January 2014

EXACT(t1,t2)


  • 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 comparion operator (==).
  • So we can use the operator(==) instead of this function.
  • The string values we have to give with in double quotas.

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


See Also


References