Difference between revisions of "Manuals/calci/EXACT"

From ZCubes Wiki
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 id="6SpaceContent" class="zcontent" align="left"> <font color="#484848"><font face="Arial, sans-serif"><font size="2">'''EXACT'''</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">(</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">'''txt1'''</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">,</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">'''txt2'''</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">)</font></font></font>
+
<div style="font-size:30px">'''EXACT (Text1,Text2) '''</div><br/>
 +
*<math>Text1</math> and <math>Text1</math> are text string.
  
<font color="#484848"><font face="Arial, sans-serif"><font size="2">'''where txt1'''</font></font></font><font color="#484848"><font face="Arial, sans-serif"><font size="2">   is the first text string and txt2   is the second text string.</font></font></font>
+
==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.
  
</div>
+
==Examples==
----
+
#EXACT("life","life") = true
<div id="1SpaceContent" class="zcontent" align="left"> <font color="#484848"><font face="Arial, sans-serif"><font size="2">EXACT compares two text strings . It is used to test text being entered into a document.</font></font></font></div>
+
#EXACT("life","Life") = false
----
+
#EXACT("LIFE","Life") = false
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
+
#EXACT("l ife","life") = false
 +
#EXACT("45","45") = true
 +
#EXACT("7","-7") = false
  
EXACT
+
==Related Videos==
  
</div></div>
+
{{#ev:youtube|lYtGzpwWNf0|280|center|EXACT}}
----
 
<div id="8SpaceContent" class="zcontent" align="left"> <font color="#484848"><font face="Arial, sans-serif"><font size="2">Let’s see an example in (Column1 Row 1,Column2Row1)</font></font></font>
 
  
<font color="#484848"><font face="Arial, sans-serif"><font size="2">I.e.=EXACT(C1R1,C2R1)</font></font></font>
+
==See Also==
 +
*[[Manuals/calci/LEN  | LEN ]]
 +
*[[Manuals/calci/LENB  | LENB ]]
  
<font color="#484848"><font face="Arial, sans-serif"><font size="2"><nowiki>=EXACT(flower,flower) is 1(which means it is true)</nowiki></font></font></font>
+
==References==
 +
*[http://en.wikipedia.org/wiki/String_%28computer_science%29 String]
  
<font color="#484848"><font face="Arial, sans-serif"><font size="2">I.e.=EXACT(C3R1,C4R1)</font></font></font>
 
  
<font color="#484848"><font face="Arial, sans-serif"><font size="2"><nowiki>=EXACT(flower,flowers) is 0 which means it is false</nowiki></font></font></font>
+
*[[Z_API_Functions | List of Main Z Functions]]
  
</div>
+
*[[ Z3 Z3 home ]]
----
 
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
 
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left">
 
 
 
{| id="TABLE1" class="SpreadSheet blue"
 
|- class="even"
 
| class="   " |
 
<div id="4Space_Copy" title="Click and Drag over to AutoFill other cells."></div>
 
| Column1
 
| class="  " | Column2
 
| class="  " | Column3
 
| class="  " | Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class=" " | flower
 
| class="sshl_f " | flower
 
| class=" " | flower
 
| class="sshl_f " | flowers
 
|- class="even"
 
| class="  " | Row2
 
| class="sshl_f" | 1
 
| class="sshl_f" | 0
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="odd"
 
| Row3
 
| class="sshl_f" |
 
| class="sshl_f SelectTD SelectTD" |
 
<div id="4Space_Handle" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="4Space_Copy" title="Click and Drag over to AutoFill other cells."></div>
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="even"
 
| Row4
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="odd"
 
| class=" " | Row5
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="even"
 
| Row6
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|}
 
 
 
<div align="left">[[Image:calci1.gif]]</div></div>
 
----
 

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

  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