C# | Char。IsSeparator()方法
原文:https://www . geeksforgeeks . org/c-sharp-char-is separator-method/
在 C# 中,Char。 是一个系统。Char 结构方法,用于检查 Unicode 字符是否可以归类为分隔符。通过向该方法传递不同类型和数量的参数,可以重载该方法。
- Char。独立(充电)方法
- Char。是一种分离(字符串,Int32)方法
夏尔。是一种分离(字符)方法
此方法用于检查指定的 Unicode 字符是否与任何分隔符匹配。如果匹配,则返回真,否则返回假。 语法:
public static bool IsSeparator(char ch);
参数:
ch :需要检查的系统. char 类型的 Unicode 字符。
返回类型:如果成功匹配任意分隔符,则返回 True,否则返回 False。这种方法的返回类型是系统。布尔。 例:
c sharp . c sharp . c sharp . c sharp
// C# program to illustrate the
// Char.IsSeparator(Char) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking if space
// is a separator
char ch1 = ' ';
result = Char.IsSeparator(ch1);
Console.WriteLine(result);
// checking if dot(.)
// is a separator
char ch2 = '.';
result = Char.IsSeparator(ch2);
Console.WriteLine(result);
}
}
Output:
True
False
夏尔。是一个分离符(字符串,Int32)方法
此方法用于检查指定位置的指定字符串是否与任何分隔符匹配。如果匹配,则返回真,否则返回假。 语法:
public static bool IsSeparator(string str, int index);
参数:
字符串:是系统的必输字符串。要评估的字符串类型。 索引:是要比较的字符串中字符的位置,该参数的类型为 System。Int32 。
返回类型:如果该方法成功匹配指定字符串中指定索引处的任何分隔符,则返回真,否则返回假。这种方法的返回类型是系统。布尔。 例外:
- 如果 str 的值为 null ,则该方法将给出 ArgumentNullException
- 如果索引小于零或大于字符串中的最后一个位置,则该方法将给出argumentout of rangerexception。
例:
c sharp . c sharp . c sharp . c sharp
// C# program to illustrate the
// Char.IsSeparator(String, Int32) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking for separator
// in a string at a desired position
string str1 = "GeeksforGeeks";
result = Char.IsSeparator(str1, 2);
Console.WriteLine(result);
// checking for separator
// in a string at a desired position
string str2 = "geeks for geeks";
result = Char.IsSeparator(str2, 5);
Console.WriteLine(result);
}
}
Output:
False
True
参考:T2?视图=netframework-4.7.2
版权属于:月萌API www.moonapi.com,转载请注明出处