Difference between revisions of "Manuals/calci/EXACT"

From ZCubes Wiki
Jump to navigation Jump to search
Line 17: Line 17:
 
#EXACT("45","45") = TRUE
 
#EXACT("45","45") = TRUE
 
#EXACT("7","-7") = FALSE  
 
#EXACT("7","-7") = FALSE  
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|lYtGzpwWNf0|280|center|EXACT}}
  
 
==See Also==
 
==See Also==

Revision as of 13:28, 24 June 2015

EXACT(t1,t2)


  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle t_1} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle t_2} 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.
  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EXACT} 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