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


C# Char.IsSymbol()用法及代码示例


在C#中,Char.IsSymbol()是一种System.Char struct方法,用于检查Unicode字符是否是在UnicodeCategory下定义为MathSymbol,CurrencySymbol,ModifierSymbol或OtherSymbol的有效符号。可以通过传递不同类型和数量的参数来重载此方法。

  1. Char.IsSymbol(Char)方法
  2. Char.IsSymbol(String,Int32)方法


Char.IsSymbol(Char)方法

此方法用于检查指定的Unicode字符是否与UnicodeCategory中的任何有效符号匹配。如果匹配,则返回True,否则返回False。

用法:

public static bool IsSymbol(char ch);

参数:

  • ch:必须检查System.char类型的unicode字符,以检查其有效符号。

返回类型:如果指定的Unicode字符是有效符号,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean。

例:

// C# program to illustrate the 
// Char.IsSymbol(Char) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Declaration of data type 
        bool result; 
  
        // checking if plus sign 
        // is symbol or not 
        char ch1 = '+'; 
  
        result = Char.IsSymbol(ch1); 
        Console.WriteLine(result); 
  
        // checking if dollar sign 
        // is symbol or not 
        char ch2 = '$'; 
  
        result = Char.IsSymbol(ch2); 
        Console.WriteLine(result); 
  
        // checking if @ 
        // is symbol or not 
        char ch3 = '@'; 
  
        result = Char.IsSymbol(ch3); 
        Console.WriteLine(result); 
    } 
}
输出:
True
True
False

Char.IsSymbol(String,Int32)方法

此方法用于检查指定位置的指定字符串中的字符是否为有效符号。如果它是根据Unicode标准的符号,则返回True,否则返回False。

用法:

public static bool IsSymbol(string str, int index);

参数:


  • Str:这是要检查其字符的System.Stringtype的必需字符串。
    index:它是字符在指定字符串中的位置。此参数的类型是System.Int32

返回类型:如果指定字符串中指定索引处的字符是根据Unicode标准的有效符号,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean。

例:

// C# program to illustrate the 
// Char.IsSymbol(String, Int32) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Declaration of data type 
        bool result; 
  
        // checking for symbol in 
        // a string 
        string str1 = "www.GeeksforGeeks.org"; 
        result = Char.IsSymbol(str1, 3); 
        Console.WriteLine(result); 
  
        // checking for symbol in 
        // a string 
        string str2 = "geeks+"; 
        result = Char.IsSymbol(str2, 5); 
        Console.WriteLine(result); 
    } 
}
输出:
False
True

参考: https://docs.microsoft.com/en-us/dotnet/api/system.char.issymbol?view=netframework-4.7.2



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 C# | Char.IsSymbol() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。