|
StringEquals(string,string2) |
|
Written by eaxs
|
|
Wednesday, 26 August 2009 01:04 |
Description Returns true if string and string2 are the same. Returns false otherwise Syntax
StringEquals(<string>,<string2>) Example This will return true. CreateVar string test hello
#StringEquals(|#test|#,hello)# This will return false. CreateVar string test lol
#StringEquals(|#test|#,hello)#
|