gpt4 book ai didi

c# - 如何在C#中获取倒数第二个字符串

转载 作者:行者123 更新时间:2023-11-30 19:16:39 33 4
gpt4 key购买 nike

示例 1:

string input = "Village Siaban  WDT no.39 91308 Semporna Sabah";

例子2:

string input = "Village Hw WDT no.39 91308 Sandakan Sarawak";

如何提取倒数第​​二个单词并打印出来。对于这种情况,Example1 是 Semporna,Example2 是 Sandakan。

最佳答案

第 1 步:您可以使用 space 分隔符Split String 以获取 String 中的所有单词。
第 2 步:您可以使用 WordsLength-2 从 Last 获取第二个单词。

试试这个:

string input = "Village Siaban  WDT no.39 91308 Semporna Sabah";

var words = input.Split(' ');
var reqWord = "";
if(words.Length > 1)
reqWord = words[words.Length-2];

关于c# - 如何在C#中获取倒数第二个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22733845/

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