备注字段中的最后一个字符

发布于 2024-11-01 10:42:44 字数 72 浏览 5 评论 0原文

我正在备忘录字段中循环字符,但我不知道如何停止循环。是否有像 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 技术交流群。

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

发布评论

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

评论(2

夏天碎花小短裙 2024-11-08 10:42:44

如果你使用 foreach 你不需要担心它......

        string memo = "test";
        foreach (var x in memo.ToCharArray())
        {
            // you code here
        }

If you use foreach you don't need to worry about it...

        string memo = "test";
        foreach (var x in memo.ToCharArray())
        {
            // you code here
        }
平生欢 2024-11-08 10:42:44

我不确定“备忘录字段”是什么意思。你的意思是字符串吗?如果是这样,那么您可以访问 Length 属性:

string memo = "hello, world";
for (int i = 0; i < memo.Length; ++i)
{
    char c = memo[i];
    // do what you want with the character.
}

或者您可以按照之前的建议使用 foreach

foreach (var c in memo)
{
    // do what you want with the character
}

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:

string memo = "hello, world";
for (int i = 0; i < memo.Length; ++i)
{
    char c = memo[i];
    // do what you want with the character.
}

Or you can use the foreach as was suggested previously:

foreach (var c in memo)
{
    // do what you want with the character
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文