备注字段中的最后一个字符
我正在备忘录字段中循环字符,但我不知道如何停止循环。是否有像 EOF 字符这样的字段结束值?有没有更好的方法来确定备注字段的结尾?
I am looping character through a memo field but I do not know how to stop the looping. Is there an End-of-field value like the EOF character? Is there a better way to determine the end of a memo field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你使用
foreach
你不需要担心它......If you use
foreach
you don't need to worry about it...我不确定“备忘录字段”是什么意思。你的意思是字符串吗?如果是这样,那么您可以访问
Length
属性:或者您可以按照之前的建议使用
foreach
:I'm not sure what you mean by a "memo field." Do you mean a string? If so, then you can access the
Length
property:Or you can use the
foreach
as was suggested previously: