Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有与提取函数相关的查询,提取函数会接受 ASCII 值吗?
$EXTRACT 函数在给定一串 ASCII 字符时,将返回该字符串的子串。例如 $EXTRACT("Hello World",1,6) 是 "Hello"
如果要提取字符串中字符的 ASCII 值,请使用函数 $ASCII。
如果要在给定 ASCII 值的情况下创建字符串,请使用函数 $CHAR。
例如,$EXTRACT("ABC",2) 是 "B",$ASCII("ABC",2) 是数字 66,函数 $CHAR(67,65,66) 是字符串 "CAB"。