我需要查看一个字符串是否与AS EMPTY STRING不同。就像是: string!=''; 我怎样才能在Pascal中实现它?
答案 0 :(得分:5)
不等式运算符是'&lt;&gt;',string <> '';
。
答案 1 :(得分:0)
您可以使用长度功能,该功能将返回字符串长度。
s:='My string';
x:=Length(s);
if( x > 1 ) then writeln('The string is not empty')
else writeln('The string is empty');