Difference between revisions of "Manuals/calci/EXACT"
Jump to navigation
Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> <font color="#484848"><font face="Arial, sans-serif"><font size="2">'''EXACT'''</font></font></font><font color="#48484...") |
|||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | <div | + | <div style="font-size:30px">'''EXACT (Text1,Text2) '''</div><br/> |
+ | *<math>Text1</math> and <math>Text1</math> 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. | ||
+ | *<math>EXACT</math> 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== | |
− | + | {{#ev:youtube|lYtGzpwWNf0|280|center|EXACT}} | |
− | |||
− | |||
− | + | ==See Also== | |
+ | *[[Manuals/calci/LEN | LEN ]] | ||
+ | *[[Manuals/calci/LENB | LENB ]] | ||
− | + | ==References== | |
+ | *[http://en.wikipedia.org/wiki/String_%28computer_science%29 String] | ||
− | |||
− | + | *[[Z_API_Functions | List of Main Z Functions]] | |
− | + | *[[ Z3 | Z3 home ]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 13:33, 15 August 2018
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
- 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