當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# String 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# 字符串 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 LastIndexOfAny()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。