在C#中, Char.IsWhiteSpace()是System.Char struct方法,用于检查Unicode字符是否为空格。空格字符包括SpaceSeparator , LineSeparator , ParagraphSeparator等类别的Unicode字符。可以通过向其传递不同类型和数量的参数来重载此方法。
- Char.IsWhiteSpace(Char)方法
- Char.IsWhiteSpace(String,Int32)方法
Char.IsWhiteSpace(Char)方法
此方法用于检查是否可以将指定的Unicode字符归类为空白字符。如果可以将其归类为空格,则返回True,否则返回False。
句法:
public static bool IsWhiteSpace(char ch);
范围:
ch: It is required Unicode character of System.char type which is to be checked for whitespace.
返回类型:如果指定的Unicode字符是空白字符,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean 。
例子:
// C# program to illustrate the
// Char.IsWhiteSpace(Char) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking if space
// is a whitespace
char ch1 = ' ';
result = Char.IsWhiteSpace(ch1);
Console.WriteLine(result);
// checking if carriage return
// is a whitespace
char ch2 = '\n';
result = Char.IsWhiteSpace(ch2);
Console.WriteLine(result);
// checking if hyphen
// is a whitespace
char ch3 = '-';
result = Char.IsWhiteSpace(ch3);
Console.WriteLine(result);
}
}
True
True
False
Char.IsWhiteSpace(String,Int32)方法
此方法用于检查指定位置的指定字符串中的字符是否可以归类为空格。当字符是空白字符时,它返回True,否则返回False。
句法:
public static bool Char.IsWhiteSpace(string str, int index);
参数:
Str: It is the required string of System.String type whose character is to be checked.
index: It is the position of character in the specified string and type of this parameter is System.Int32.
返回类型:该方法返回true,如果在指定的字符串中指定索引的字符可以被归类为空白,否则返回FALSE。此方法的返回类型为System.Boolean 。
例子:
// C# program to illustrate the
// Char.IsWhiteSpace (String, Int32) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking for whitespace
// in a string
string str1 = "GeeksforGeeks";
result = Char.IsWhiteSpace(str1, 2);
Console.WriteLine(result);
// checking for whitespace
// in a string
string str2 = "Geeks For Geeks";
result = Char.IsWhiteSpace(str2, 5);
Console.WriteLine(result);
}
}
False
True
参考: https : //docs.microsoft.com/zh-cn/dotnet/api/system.char.iswhitespace?view=netframework-4.7.2