gpt4 book ai didi

c# - 在单词处拆分字符串 - 保留左侧

转载 作者:太空宇宙 更新时间:2023-11-03 18:24:31 24 4
gpt4 key购买 nike

我有一个字符串,在中间的某个地方(左右长度不同)我有这个字符序列(左边和右边有一个空格)

to:

此时是否可以拆分并返回左侧的字符,即给定此字符串:

这里是一些文本,这里是一些不同长度的文本

我想要的结果是:

Here is some text

最佳答案

使用 IndexOf 结合 Substring:

string s = "Here is some text to: and here is some more text of a different length";

int length = s.IndexOf("to:");

if (length > 0)
{
s = s.Substring(0, length);
}

关于c# - 在单词处拆分字符串 - 保留左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38521955/

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