the master
01-06-2008, 12:20 PM
Hi. What is the best way of checking for an empty string?
if len(temp)=0 then
'Or
if temp="" then
Does it make any difference? I would assume extra processing goes on for len() but some people seem to prefer it. Is there a reason?
if len(temp)=0 then
'Or
if temp="" then
Does it make any difference? I would assume extra processing goes on for len() but some people seem to prefer it. Is there a reason?