📜  C#| Char.IsSymbol()方法

📅  最后修改于: 2021-05-29 23:18:39             🧑  作者: Mango

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

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

Char.IsSymbol(Char)方法

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

句法:

public static bool IsSymbol(char ch);

范围:

返回类型:如果指定的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);

参数:

返回类型:该方法返回true,如果在指定索引指定字符串中的字符是根据Unicode标准的有效符号,否则返回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/zh-cn/dotnet/api/system.char.issymbol?view=netframework-4.7.2