Pascal 比较字符串

发布于 2024-10-30 05:21:07 字数 64 浏览 1 评论 0原文

我需要看看一个字符串是否与空字符串不同。像这样的东西: 字符串!= ''; 我怎样才能在 Pascal 中实现它?

I need to see if one string is not the same AS EMPTY STRING. Something like:
string != '';
How can I achieve it in Pascal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

z祗昰~ 2024-11-06 05:21:07

不等运算符是“<>”,string <> '';

The inequality operator is '<>', string <> '';.

昇り龍 2024-11-06 05:21:07

您可以使用Length函数,它将返回字符串长度。

s:='My string';
x:=Length(s);
if( x > 1 ) then writeln('The string is not empty') 
            else writeln('The string is empty');

You can use the Length function, which will return the string length.

s:='My string';
x:=Length(s);
if( x > 1 ) then writeln('The string is not empty') 
            else writeln('The string is empty');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文