In C#, Char.IsWhiteSpace() is a System.Char struct method which is used to check whether a Unicode character is a whitespace or not. Whitespace characters include Unicode characters of category SpaceSeparator, LineSeparator, ParagraphSeparator etc. This method can be overloaded by passing different type and number of arguments to it.
- Char.IsWhiteSpace(Char) Method
- Char.IsWhiteSpace (String, Int32) Method
Char.IsWhiteSpace(Char) Method
This method is used to check whether a specified Unicode character can be categorized as a whitespace character or not. If it can be categorized as whitespace then it returns True otherwise return False.
Syntax:
public static bool IsWhiteSpace(char ch);
Parameter:
ch: It is required Unicode character of System.char type which is to be checked for whitespace.
Return Type : The method returns True if the specified Unicode character is a whitespace character, otherwise returns False. The return type of this method is System.Boolean.
Example:
using System;
class GFG {
static public void Main()
{
bool result;
char ch1 = ' ' ;
result = Char.IsWhiteSpace(ch1);
Console.WriteLine(result);
char ch2 = '\n' ;
result = Char.IsWhiteSpace(ch2);
Console.WriteLine(result);
char ch3 = '-' ;
result = Char.IsWhiteSpace(ch3);
Console.WriteLine(result);
}
}
|
Char.IsWhiteSpace(String, Int32) Method
This method is used to check whether a character in the specified string at the specified position can be categorized as whitespace or not. It returns True when the character is a whitespace character otherwise it returns False.
Syntax:
public static bool Char.IsWhiteSpace(string str, int index);
Parameters:
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.
Return Type: The method returns True if the character at specified index in the specified string can be categorized as whitespace, otherwise returns False. The return type of this method is System.Boolean.
Example:
using System;
class GFG {
static public void Main()
{
bool result;
string str1 = "GeeksforGeeks" ;
result = Char.IsWhiteSpace(str1, 2);
Console.WriteLine(result);
string str2 = "Geeks For Geeks" ;
result = Char.IsWhiteSpace(str2, 5);
Console.WriteLine(result);
}
}
|
Reference: https://docs.microsoft.com/en-us/dotnet/api/system.char.iswhitespace?view=netframework-4.7.2