I know it\'s commonly accepted that using strcmp is the proper way to compare strings, but my question is why? According to the help:
strcmp
A =
Another small exception is with empty strings.
Using '' == '' in if statement evaluates to false.
'' == ''
strcmp('','') is true.
strcmp('','')