我正在寻找一个搜索文本文件的解决方案,让我们说“Hello”,每次在文本文件中找到“Hello”时,它会跳到下一行并将整行打印成新文本文件
示例文本文件内容:
Hello password:xxxxx user:xxxxx Foo password:xxxx user:xxxxxx Foo password:xxxxx user:xxxxx Hello password:xxxxx user:xxxxx Foo password:xxxx user:xxxx
答案 0 :(得分:0)
试试这个:
if {[string match $::StringToFind $line]} {
continue
}