欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TCL/TK文件操作

程序员文章站 2022-05-11 11:13:24
...

读取并打印

proc fileDemo {} {
	set fHandler [open log.txt r]
	while {[eof $fHandler] != 1} {
		gets $fHandler line
		puts $line
	}
}

TCL/TK文件操作

利用正则表达式提取信息

TCL/TK文件操作
TCL/TK文件操作

相关标签: 脚本