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


C# String LastIndexOf()用法及代碼示例


C# LastIndexOf() 方法用於查找指定字符在 String 中最後一次出現的索引位置。

簽名

public int LastIndexOf(Char ch)
public int LastIndexOf(Char, Int32)
public int LastIndexOf(Char, Int32, Int32)
public int LastIndexOf(String)
public int LastIndexOf(String, Int32)
public int LastIndexOf(String, Int32, Int32)
public int LastIndexOf(String, Int32, Int32, StringComparison)
public int LastIndexOf(String, Int32, StringComparison)
public int LastIndexOf(String, StringComparison)

參數

ch:它是一個字符類型參數,用於查找字符串中給定字符的最後一次出現。

返回

它返回整數值。

C# 字符串 LastIndexOf() 方法示例

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#";
           int index = s1.LastIndexOf('l');
           Console.WriteLine(index);
      }  
    }

輸出:

3

C# 字符串 IndexOf() 與 LastIndexOf() 示例

IndexOf() 方法返回第一個匹配字符的索引號,而 LastIndexOf() 方法返回最後一個匹配字符的索引號。

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#";
           int first = s1.IndexOf('l');
           int last = s1.LastIndexOf('l');
           Console.WriteLine(first);
           Console.WriteLine(last);
      }  
    }

輸出:

2
3




相關用法


注:本文由純淨天空篩選整理自 C# String LastIndexOf()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。