gpt4 book ai didi

c# - 什么是 C# 相当于 C 中的 strstr()?

转载 作者:太空狗 更新时间:2023-10-29 15:43:36 27 4
gpt4 key购买 nike

首先,有一个问题几乎完全匹配我的问题(strstr() equivalent in C#),但他指的是一种方法来做一个字节[]比较版本。

我正在寻找一个字符串比较,它输出 str2 在 str1 中第一次出现的索引,但找不到它!

string s1 = ("BetYouCantFooFind");
string s2 = ("Foo");

int idx = strstrC#(s1,s2);

肯定有等价物吗?

最佳答案

我认为您正在寻找 IndexOf :

int idx = s1.IndexOf(s2);

关于c# - 什么是 C# 相当于 C 中的 strstr()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12734174/

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