I Not sure, the first answer is correct?
Macro Macro9
Macro Macro9
out
;ture
int recurse = 1
int success
success = zip.AppendFiles("c:/temp/*",recurse)
if (success != 1)
,;do something
;Starts with
str s1 = "somestring word"
if(s1.beg("somestring")) out "True"; else out "False"
;Ends with
str s2 = "word somestring"
if(s2.end("somestring")) out "True"; else out "False"
;Empty
str s3 = ""
if(empty(s3)) out "True"; else out "False"
;contain
str s4 = "word somestring word"
int i = find(s4 "somestring")
if(i!=-1) out "True"; else out "False"