Exact
Description
This function is used to return TRUE(1) if both strings are an exact match (case and length).
Syntax
int Exact(string str1$, string str2$)
Parameters
str1
- is the frist string you want to match.
str2
- is the second string you want to match.
Return
If the strings are match, return 1.
If the strings are not identical, return 0.
Example
string str1$="Abc"; string str2$="abc"; int letter = exact(str1$,str2$); letter=; //Should return 0.