BT编程语言文档
char_code
根据索引返回字符串中字符的 Unicode 编码语法 Str.char_code(index:Int)
index:必填,表示要返回字符的索引位置
str = 'hello' println str.char_code(1) // 输出:101 ('e' 的 Unicode 编码)语法 Str.char_code(index:Int)
index:必填,表示要返回字符的索引位置
str = 'hello' println str.char_code(1) // 输出:101 ('e' 的 Unicode 编码)