12 lines
281 B
Text
12 lines
281 B
Text
|
|
var$ = ""
|
||
|
|
' --------------
|
||
|
|
'empty string
|
||
|
|
' -------------
|
||
|
|
if var$="" then print "String is Empty"
|
||
|
|
if len(var$)=0 then print "String is Empty"
|
||
|
|
' -------------
|
||
|
|
'not empty string
|
||
|
|
' -------------
|
||
|
|
if var$<>"" then print "String Not empty."
|
||
|
|
if len(var$)>0 then print "String Not empty."
|