【发布时间】:2021-04-03 22:48:26
【问题描述】:
我想删除某个单词所在行的第一个字母。具体单词是“description”,我想删除分号,但只在出现单词description的行中。其他行应该保持不变,除非单词描述也出现在那里。
例子:
;Version 21
;What is done here is the madness (description).txt;
;Version 22
;555 see above
完成版
;Version 21
What is done here is the madness (description).txt;
;Version 22
;555 see above
我有一个大约 10.000 行的文本,手动检查所有内容会让我发疯。 有什么办法可以自动化吗? 提前非常感谢。
【问题讨论】:
标签: notepad++