当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。