Constants' 詳細(に述べる)s |
ASC_UPALPHA
const long ASC_UPALPHA = 0x00000001;
- Description
- ASCII A-Z upper alpha
|
|
ASC_LOALPHA
const long ASC_LOALPHA = 0x00000002;
- Description
- ASCII a-z lower alpha
|
|
ASC_DIGIT
const long ASC_DIGIT = 0x00000004;
- Description
- ASCII 0-9 digit
|
|
ASC_UNDERSCORE
const long ASC_UNDERSCORE = 0x00000008;
- Description
- ASCII '_' 強調する
|
|
ASC_DOLLAR
const long ASC_DOLLAR = 0x00000010;
- Description
- ASCII '$' dollar
|
|
ASC_DOT
const long ASC_DOT = 0x00000020;
- Description
- ASCII '.' dot/point
|
|
ASC_COLON
const long ASC_COLON = 0x00000040;
- Description
- ASCII ':' 結腸
|
|
ASC_CONTROL
const long ASC_CONTROL = 0x00000200;
- Description
- Special value to 許す 支配(する)/統制する characters (0x00 < char < 0x20)
|
|
ASC_ANY_BUT_CONTROL
const long ASC_ANY_BUT_CONTROL = 0x00000400;
- Description
- Special value to 許す anything below 128 except 支配(する)/統制する
characters. Not 始める,決める in
ParseResult.
|
|
ASC_OTHER
const long ASC_OTHER = 0x00000800;
- Description
- 付加 旗 始める,決める in ParseResult::StartFlags
or ParseResult::ContFlags. 始める,決める if 非,不,無 of the
above ASC_... (except ASC_ANY_...) 選び出す/独身 values match an ASCII
character parsed.
|
|
UNI_UPALPHA
const long UNI_UPALPHA = 0x00001000;
- Description
- Unicode (above 127) upper 事例/患者 letter
|
|
UNI_LOALPHA
const long UNI_LOALPHA = 0x00002000;
- Description
- Unicode (above 127) lower 事例/患者 letter
|
|
UNI_DIGIT
const long UNI_DIGIT = 0x00004000;
- Description
- Unicode (above 127) decimal digit number
|
|
UNI_TITLE_ALPHA
const long UNI_TITLE_ALPHA = 0x00008000;
- Description
- Unicode (above 127) 肩書を与える 事例/患者 letter
|
|
UNI_MODIFIER_LETTER
const long UNI_MODIFIER_LETTER = 0x00010000;
- Description
- Unicode (above 127) modifier letter
|
|
UNI_OTHER_LETTER
const long UNI_OTHER_LETTER = 0x00020000;
- Description
- Unicode (above 127) other letter
|
|
UNI_LETTER_NUMBER
const long UNI_LETTER_NUMBER = 0x00040000;
- Description
- Unicode (above 127) letter number
|
|
UNI_OTHER_NUMBER
const long UNI_OTHER_NUMBER = 0x00080000;
- Description
- Unicode (above 127) other number
|
|
TWO_DOUBLE_QUOTES_BREAK_STRING
const long TWO_DOUBLE_QUOTES_BREAK_STRING = 0x10000000;
- Description
- If this bit is 始める,決める in nContCharFlags parameters and a
string enclosed in 二塁打 引用するs is parsed and two 連続した
二塁打 引用するs are 遭遇(する)d, the string is ended. If this bit
is not 始める,決める, the two 二塁打 引用するs are parsed as one escaped
二塁打 引用する and string parsing continues. The bit is ignored in
nStartCharFlags parameters.
Example:
"abc""def" --> bit not 始める,決める => abc"def
"abc""def" --> bit 始める,決める => abc
|
|
UNI_OTHER
|
IGNORE_LEADING_WS
const long IGNORE_LEADING_WS = 0x40000000;
- Description
- Only valid for nStartCharFlags parameter to
CharacterClassification::parseAnyToken and
CharacterClassification::parsePredefinedToken,
ignored on nContCharFlags parameter.
Not 始める,決める in ParseResult.
|
|
ASC_ALPHA
const long ASC_ALPHA = ASC_UPALPHA | ASC_LOALPHA;
- Description
- ASCII a-zA-Z lower or upper alpha
|
|
ASC_ALNUM
const long ASC_ALNUM = ASC_ALPHA | ASC_DIGIT;
- Description
- ASCII a-zA-Z0-9 alphanumeric
|
|
UNI_ALPHA
const long UNI_ALPHA = UNI_UPALPHA | UNI_LOALPHA | UNI_TITLE_ALPHA;
- Description
- Unicode (above 127) lower or upper or 肩書を与える 事例/患者 alpha
|
|
UNI_ALNUM
const long UNI_ALNUM = UNI_ALPHA | UNI_DIGIT;
- Description
- Unicode (above 127) alphanumeric
|
|
UNI_LETTER
const long UNI_LETTER = UNI_ALPHA | UNI_MODIFIER_LETTER |
UNI_OTHER_LETTER;
- Description
- Unicode (above 127) alpha or letter
|
|
UNI_NUMBER
const long UNI_NUMBER = UNI_DIGIT | UNI_LETTER_NUMBER |
UNI_OTHER_NUMBER;
- Description
- Unicode (above 127) number
|
|
ANY_ALPHA
const long ANY_ALPHA = ASC_ALPHA | UNI_ALPHA;
- Description
- any (ASCII or Unicode) alpha
|
|
ANY_DIGIT
const long ANY_DIGIT = ASC_DIGIT | UNI_DIGIT;
- Description
- any (ASCII or Unicode) digit
|
|
ANY_ALNUM
const long ANY_ALNUM = ASC_ALNUM | UNI_ALNUM;
- Description
- any (ASCII or Unicode) alphanumeric
|
|
ANY_LETTER
const long ANY_LETTER = ASC_ALPHA | UNI_LETTER;
- Description
- any (ASCII or Unicode) letter
|
|
ANY_NUMBER
const long ANY_NUMBER = ASC_DIGIT | UNI_NUMBER;
- Description
- any (ASCII or Unicode) number
|
|
ANY_LETTER_OR_NUMBER
const long ANY_LETTER_OR_NUMBER = ANY_LETTER | ANY_NUMBER;
- Description
- any (ASCII or Unicode) letter or number
|
|