Difference between revisions of "Manuals/calci/EXACT"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
==Examples== | ==Examples== | ||
− | #EXACT("life","life") = | + | #EXACT("life","life") = true |
− | #EXACT("life","Life") = | + | #EXACT("life","Life") = false |
− | #EXACT("LIFE",Life") = | + | #EXACT("LIFE","Life") = false |
− | #EXACT("l ife","life") = | + | #EXACT("l ife","life") = false |
− | #EXACT("45","45") = | + | #EXACT("45","45") = true |
− | #EXACT("7","-7") = | + | #EXACT("7","-7") = false |
==Related Videos== | ==Related Videos== |
Revision as of 17:51, 6 April 2018
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 comparison operator (==).
- So we can use the operator(==) instead of this function.
- The string values we have to give with in double quotes.
Examples
- EXACT("life","life") = true
- EXACT("life","Life") = false
- EXACT("LIFE","Life") = false
- EXACT("l ife","life") = false
- EXACT("45","45") = true
- EXACT("7","-7") = false
Related Videos
See Also
References