AI智能
改变未来

[ Tcl ] dict 和 JSON 相互转换

https://www.cnblogs.com/yeungchie/

Tcl 的资料是真难查,终于在 tcltk 的 github 找到了用法 tcltk/tcllib: tcllib (Mirror of core.tcl-lang.org).

json

package require jsonpackage require json::write

json::dict2json

set dict [dict create a 1 b 2 c 3]# a 1 b 2 c 3set jsonDict [json::dict2json $dict]# {"a": 1# ,"b": 2# ,"c": 3# }

json::json2dict

puts [json::json2dict $jsonDict]# a 1 b 2 c 3
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » [ Tcl ] dict 和 JSON 相互转换