C# 中的 Char.IsLowSurrogate(String, Int32) 方法
C# 中的 Char.IsLowSurrogate() 方法指示字符串中指定位置处的 Char 对象是否是低替代字符。
语法
以下是语法 −
public static bool IsLowSurrogate (string str, int index);
在上面, str 是一个字符串,而 index 是 str 中要评估的字符的位置。
示例
现在,让我们看一个示例来实现 Char.IsLowSurrogate() 方法 −
using System; public class Demo { public static void Main(){ string str = new String(new char[] { 'k', 'm', 'g', 't', 'j', 'p', '\uDC00' }); bool res = Char.IsLowSurrogate(str, 6); if (res) Console.WriteLine("Contains Low Surrogate value!"); else Console.WriteLine("Does not contain Low Surrogate value!"); } }
输出
此代码将生成以下输出 −
Contains Low Surrogate value!
示例
现在,让我们看另一个示例 −
using System; public class Demo { public static void Main(){ string str = new String(new char[] { 'k', 'm', 'g', 't', 'j', 'p', '\uDC00' }); bool res = Char.IsLowSurrogate(str, 3); if (res) Console.WriteLine("Contains Low Surrogate value!"); else Console.WriteLine("Does not contain Low Surrogate value!"); } }
输出
此代码将生成以下输出 −
Does not contain Low Surrogate value!
广告