📜  C#字符串LastIndexOfAny()方法

📅  最后修改于: 2020-10-31 03:45:16             🧑  作者: Mango

C#字符串LastIndexOfAny()

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#String 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