gpt4 book ai didi

c# 复制文本直到行尾 richtextbox

转载 作者:行者123 更新时间:2023-12-02 05:03:12 27 4
gpt4 key购买 nike

我遇到一个问题,我需要从文本文件中获取特定的字符串。这个文件是一个设置文件,所以大多数时候我需要的东西都包含在一行中。我需要将这些未知字符串复制到文本框中,但我知道字符串本身之前的文本(类似于 name = cannon,其中 cannon 是我需要的字符串)如何从“=”复制到行尾? (我把它复制到一个 richTextBox 中)

最佳答案

试试这个:

string settings = string.Empty;
IEnumerable<string> lines = File.ReadLines(myPath); //reads all lines of text file
foreach (string s in lines) //iterate thru all lines
{
if s.Contains("=")
{
settings = s.substring(s.IndexOf("=")); //get substring from "=" to end of line
break; //break out of the loop
}
}

这基本上是 slobodan 答案的扩展。您的问题是如何从“=”复制到行尾,这是这样做的。但是,您对他的回答的评论是矛盾的,因为您在那里提到它是多行的。让我知道您需要什么,我会尝试更改我的答案。

关于c# 复制文本直到行尾 richtextbox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16698849/

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