Exact-func
This function is used to return TRUE if both strings are an exact match (case and length).
int Exact(string str1, string str2)
str1
str2
If the strings are match, return 1.
If the strings are not identical, return 0.
string str1$="Abc"; string str2$="abc"; int letter = exact(str1$,str2$); letter=; //Should return 0.
Search