SSIS CODEPOINT值26代表什么
What does the SSIS CODEPOINT value 26 represent
在一个现有的 SSIS 项目中,我发现了一个表达式为 CODEPOINT(column)==26 的 Condition Split。
但我找不到“26”代表什么值。当我在 CODEPOINT 中搜索字母时,它从 65 开始,对于 0-9,它从 45 开始。
CODEPOINT Expresion 仅说明以下内容
Returns the Unicode code point of the leftmost character of a character expression
发现了探索维基百科Unicode encodings
The first 128 Unicode code points, U+0000 to U+007F, used for the C0 Controls and Basic Latin characters and which correspond one-to-one to their ASCII-code equivalents
太棒了,把它放在一起并参考 ASCII table allows me to determine that 26 is SUB/Substitute 控制字符。 Ctrl-Z 对于那些真正想在家尝试这个(并在 Unix(tm) 变体下工作)的人
在一个现有的 SSIS 项目中,我发现了一个表达式为 CODEPOINT(column)==26 的 Condition Split。
但我找不到“26”代表什么值。当我在 CODEPOINT 中搜索字母时,它从 65 开始,对于 0-9,它从 45 开始。
CODEPOINT Expresion 仅说明以下内容
Returns the Unicode code point of the leftmost character of a character expression
发现了探索维基百科Unicode encodings
The first 128 Unicode code points, U+0000 to U+007F, used for the C0 Controls and Basic Latin characters and which correspond one-to-one to their ASCII-code equivalents
太棒了,把它放在一起并参考 ASCII table allows me to determine that 26 is SUB/Substitute 控制字符。 Ctrl-Z 对于那些真正想在家尝试这个(并在 Unix(tm) 变体下工作)的人