System::Char::IsNumber 方法
Char::IsNumber(char_t) method
确定指定字符是否被分类为数字。
static bool System::Char::IsNumber(char_t c)
| 参数 | 类型 | 描述 |
|---|---|---|
| c | char_t | 要测试的字符 |
ReturnValue
如果指定字符是数字,则为 True;否则为 False
另见
- Class Char
- Namespace System
- Library Aspose.Font for C++
Char::IsNumber(const char_t *, int) method
确定指定字符缓冲区中指定索引处的字符是否被分类为数字。
static bool System::Char::IsNumber(const char_t *str, int idx)
| 参数 | 类型 | 描述 |
|---|---|---|
| str | const char_t * | 指向字符缓冲区起始位置的指针 |
| idx | int | 指定缓冲区中要测试的字符的零基索引 |
ReturnValue
如果指定索引处的字符是数字,则为 True;否则为 False
另见
- Class Char
- Namespace System
- Library Aspose.Font for C++