System::Char::IsWhiteSpace method
Contents
[
Hide
]Char::IsWhiteSpace(char_t) method
Determines whether the specified character is classified as a white space character.
static bool System::Char::IsWhiteSpace(char_t c)
Parameter | Type | Description |
---|---|---|
c | char_t | The character to test |
ReturnValue
True if the specified character is a white space character, otherwise - false
See Also
- Class Char
- Namespace System
- Library Aspose.TeX for C++
Char::IsWhiteSpace(const char_t *, int) method
Determines whether the character at the specified index in the specified character buffer is classified as a white space character.
static bool System::Char::IsWhiteSpace(const char_t *str, int idx)
Parameter | Type | Description |
---|---|---|
str | const char_t * | Pointer to the beginning of the character buffer |
idx | int | A zero-based index in the specified buffer of the character to test |
ReturnValue
True if the character at the specified index is a white space character, otherwise - false
See Also
- Class Char
- Namespace System
- Library Aspose.TeX for C++
Char::IsWhiteSpace(const String&, int) method
Determines whether the character at the specified index in the specified string is classified as a white space character.
static bool System::Char::IsWhiteSpace(const String &str, int index)
Parameter | Type | Description |
---|---|---|
str | const String& | A string |
index | int | A zero-based index in the specified string |
ReturnValue
True if the character at the specified index is a white space character, otherwise - false
See Also
- Class String
- Class Char
- Namespace System
- Library Aspose.TeX for C++