tcl/string/20200225 fromCharCode, toCharCode

Posted gcxokoa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tcl/string/20200225 fromCharCode, toCharCode相关的知识,希望对你有一定的参考价值。

proc String.fromCharCode {args} {
    set s [binary format s* $args]
    encoding convertfrom unicode $s
}
proc String.toCharCode {s} {
    set s [encoding convertto unicode $s]
    binary scan $s s* x;set x
}

示例:

$ String.toCharCode hello
> 104 101 108 108 111
$ String.toCharCode 你好
> 20320 22909
$ String.fromCharCode 104 101 108 108 111
> hello
$ String.fromCharCode 20320 22909
> 你好

done.

以上是关于tcl/string/20200225 fromCharCode, toCharCode的主要内容,如果未能解决你的问题,请参考以下文章

表的求和及计算

数据查询相关函数

[oracle] 闪回误删除表

cnn.py cs231n

SQL怎么查询两个表中不同的数据?

ORACLE怎么用SQL查询多张表和多个时间点的数据的行数?