C# LastIndexOfAny() 方法用于查找此字符串中指定的一个或多个字符最后一次出现的索引位置。
签名
public int LastIndexOfAny(Char[] ch)
public int LastIndexOfAny(Char[], Int32)
public int LastIndexOfAny(Char[], Int32, Int32)
参数
ch:它是一个字符类型数组。
返回
它返回整数值。
C# 字符串 LastIndexOfAny() 方法示例
using System;
public class StringExample
{
public static void Main(string[] args)
{
string s1 = "abracadabra";
char[] ch = {'r','b'};
int index = s1.LastIndexOfAny(ch);//Finds 'r' at the last
Console.WriteLine(index);
}
}
输出:
9
C# 字符串 LastIndexOfAny() 方法示例 2
using System;
public class StringExample
{
public static void Main(string[] args)
{
string s1 = "abracadabra";
char[] ch = {'t','b'};
int index = s1.LastIndexOfAny(ch);//Finds 'b' at the last
Console.WriteLine(index);
}
}
输出:
8
相关用法
- C# String LastIndexOf()用法及代码示例
- C# String ToLower()用法及代码示例
- C# String ToString()用法及代码示例
- C# String Contains()用法及代码示例
- C# String ToCharArray()用法及代码示例
- C# String IndexOf()用法及代码示例
- C# String TrimEnd()用法及代码示例
- C# String IsNormalized()用法及代码示例
- C# String Concat()用法及代码示例
- C# String GetTypeCode()用法及代码示例
- C# String Equals()用法及代码示例
- C# String Split()用法及代码示例
- C# String SubString()用法及代码示例
- C# String Normalize()用法及代码示例
- C# String Compare()用法及代码示例
- C# String EndsWith()用法及代码示例
- C# String Trim()用法及代码示例
- C# String Copy()用法及代码示例
- C# String Join()用法及代码示例
- C# String PadLeft()用法及代码示例
注:本文由纯净天空筛选整理自 C# String LastIndexOfAny()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。