1

以下の行を含むファイル test.cpp があるとします。

Test(func_class,func1)
{
  Test_Func1();
  Test_Func2();
  Test_Func3();
}

Test(func_class,func3)
{
  Test_Func1();
  Test_Func9();
  Test_Func3();
}

Test(func_class,func2)
{
  Test_Func6();
  Test_Func7();
  Test_Func3();
}

今、挿入後、Test(func_class,func1/2/3) の e:g の中括弧の間に新しい行を挿入したいと思います。

Test(func_class,func1)
{
  Test_Func1();
  Test_newFunc6();
  Test_Func2();
  Test_Func3();
}

Test(func_class,func3)
{
  Test_Func1();
  Test_newFunc6();
  Test_Func9();
  Test_Func3();
}

Test(func_class,func2)
{
  Test_Func6();
  Test_newFunc6();
  Test_Func7();
  Test_Func3();
}

これは、スクリプトを使用して実行できます。誰でもこれを行うためにシェルスクリプトまたはperl pythonを提案できますか?

4

2 に答える 2

0

は入力gash.txtファイル、out.txtは出力ファイルです。

パイソン:

extra = '  Test_newFunc6();\n'

fh  = open('gash.txt')
out = open('out.txt','w')

for line in fh:
    out.write(line)
    if line.startswith('{'):
        # Read the next line
        buff = fh.readline()
        out.write(buff)
        out.write(extra)

fh.close()
out.close()

パール:

use warnings;
use strict;

my $extra = "  Test_newFunc6();\n";

open(my $fh, '<', 'gash.txt') || die "gash.txt: $!";
open(my $out, '>', 'out.txt') || die "out.txt: $!";

while (<$fh>) {
    print $out $_;
    if (substr($_, 0, 1) eq '{') {
        # Read the next line
        my $buff = <$fh>;
        print $out $buff;
        print $out $extra;
    }
}

close($fh);
close($out);

バッシュ:

extra="  Test_newFunc6();\n";
wFlag=false

exec 3> out.txt

IFS=
while read -r line
do
    echo "$line" >&3

    $wFlag && echo "$extra" >&3

    if [[ ${line:0:1} == '{' ]]
    then
        wFlag=true
    else
        wFlag=false
    fi
done < gash.txt

exec 3<&-
于 2013-10-03T11:26:52.570 に答える
0

以下が役立つ場合があります。これはpythonコードです:

cpp = open("test.cpp","r")
lines = cpp.readlines()
printExtraAfterOneLine = False
for line in lines:
  if printExtraAfterOneLine:
    print line
    print '  Test_newFunc6();'
    printExtraAfterOneLine = False
  else:
    if line.strip() == "{":
      printExtraAfterOneLine = True
    print line
于 2013-10-03T09:17:54.017 に答える