I would like to compare two variables containing strings: mystr and inputstr
var mystr = "blabla" dlgwritestr
I have found three ways how to do that
1) simply
if (mystr == inputstr)
2) StrStr
var tmp = StrStr inputstr mystr if (tmp == 1)
3) StrCmp
var tmp = StrCmp inputstr mystr if (tmp == 1)
Are StrStr and StrCmp equivalent functions or not?

Help










