gpt4 book ai didi

c# - 检测换行符在字符串中的位置 :

转载 作者:太空狗 更新时间:2023-10-29 18:07:00 28 4
gpt4 key购买 nike

我使用 Visual Studio 对象查看器看到我的字符串是:

"_profileIconId = 5\n            elo"

我需要从开始到换行符处获取文本。

这是我尝试过的方法,但 IndexOf() 方法返回 -1,表示未找到换行符。

var stringEx = "_profileIconId = 5\n            elo";
var x = stringEx.IndexOf(Environment.NewLine);
stat.Name = tempName.Substring(0,x);

关于如何实现这一点有什么想法吗?

最佳答案

那是因为 Environment.NewLine 表示 \r\n(回车 + 换行),而您的源字符串中只有换行。将第二行更改为:

var x = stringEx.IndexOf("\n");

关于c# - 检测换行符在字符串中的位置 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4776259/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com