码迷,mamicode.com
首页 > 其他好文 > 详细

tcl/string/20200225 fromCharCode, toCharCode

时间:2020-02-25 14:56:52      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:ffffff   mat   bin   roc   har   done   can   for   one   

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

标签:ffffff   mat   bin   roc   har   done   can   for   one   

原文地址:https://www.cnblogs.com/GCxokoA/p/12361420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!