This seems like a silly question. But a question i've been having trouble figuring out...
How do i determine if a string is empty?
Code:
if(equali(string, "") ) // throws warnings
Code:
if(sizeof string < 2) // Throws 3 warnings
Code:
if(string[0]) // simply doesn't work
Code:
if(charsmax(string) < 2) // Throws errors & warnings
all of these are proceeded with
Code:
formatex(string, charsmax(string), "[page]")
__________________