Pascal 比较字符串
我需要看看一个字符串是否与空字符串不同。像这样的东西: 字符串!= ''; 我怎样才能在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不等运算符是“<>”,
string <> '';
。The inequality operator is '<>',
string <> '';
.您可以使用Length函数,它将返回字符串长度。
You can use the Length function, which will return the string length.