notepad ++ 删除指定字段的行
时间: 2023-04-10 18:03:12 浏览: 694
shell 删除指定行上一行
可以使用以下代码实现:
```lua
local file = io.open("input.txt", "r")
local output = io.open("output.txt", "w")
for line in file:lines() do
if not line:match("指定字段") then
output:write(line .. "\n")
end
end
file:close()
output:close()
```
其中,"input.txt" 是原始文件的路径,"output.txt" 是处理后的文件路径,"指定字段" 是需要删除的字段。这段代码会逐行读取原始文件,如果该行不包含指定字段,则将该行写入处理后的文件中。最后,关闭文件句柄。
阅读全文