我的輸入文件是這樣的:複製使用批處理
text text
text text
text START_CHR line 1: text text text;
text START_CHR line 2: text text text;
text START_CHR line 3: text text text;
...
text text
eof
我需要的所有行復制到文件START_CHR和「之間;'。
希望的輸出文件:
START_CHR line 1: text text text;
START_CHR line 2: text text text;
START_CHR line 3: text text text;
或
line 1: text text text
line 2: text text text
line 3: text text text
的START_CHR和 ';'是行的分隔符。
不幸的是,FINDSTR 'START_CHR' inFile.txt> outFile.txt結果是:
text START_CHR line 1: text text text;
text START_CHR line 2: text text text;
text START_CHR line 3: text text text;
如何,我可以得到所需的輸出文件?
乾杯,安迪
是**的** START_CHR _ONE character_像''#,或_a string_像'START_CHR'? – Aacini
提供混淆的示例通常會導致無法使用的腳本。 – Squashman
START_CHR是字符串。行中的字符之間沒有空格。 – Andy