目录
string
方法
IndexOf与IndexOfAny
char[] ch = { 's', 'c', 'b' };
string str = "acsdfgdfgchacscdsad";
int lbl = 0;
lbl = str.IndexOfAny(ch, 5, 5);
IndexOfAny与IndexOf类似,区别在于可以搜索在一个字符串中,出现一个字符数组中任意字符的第一次出现的位置。
2023-07-26 09:43:04
目录
char[] ch = { 's', 'c', 'b' };
string str = "acsdfgdfgchacscdsad";
int lbl = 0;
lbl = str.IndexOfAny(ch, 5, 5);
IndexOfAny与IndexOf类似,区别在于可以搜索在一个字符串中,出现一个字符数组中任意字符的第一次出现的位置。