Tcl 中键盘输入

发布于 2024-08-13 14:08:12 字数 60 浏览 1 评论 0原文

如何通过键盘向 Tcl 脚本提供输入? C 中有类似 scanf() 的东西吗?

How do I give input to a Tcl script through the keyboard? Is there any thing like scanf() in C?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光是把杀猪刀 2024-08-20 14:08:12

gets 命令可能就是您想要的。

set data [gets stdin]
# or
set numchars [gets stdin data]

scan 命令可用于解析输入,类似于scanf 与 C 一起使用。它使用以下格式:
扫描字符串格式 ?varName varName ...?

因此,要将“5只猫”这样的输入解析为单个变量:

set data [gets stdin]
scan $data "%d %s" myint mystring

编辑:从科林的评论中添加了更多信息。

The gets command is probably what you want.

set data [gets stdin]
# or
set numchars [gets stdin data]

The scan command can be used to parse the input similar to how scanf does with C. It uses the format:
scan string format ?varName varName ...?

Thus, to parse an input like "5 cats" to individual variables:

set data [gets stdin]
scan $data "%d %s" myint mystring

Edit: Added more information from Colin's comment.

稀香 2024-08-20 14:08:12
puts -nonewline "Enter your name: "
flush stdout
set name [gets stdin]

puts "Hello $name"
puts -nonewline "Enter your name: "
flush stdout
set name [gets stdin]

puts "Hello $name"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文