現在のループで実行中に次の行を確認する方法はありますか? また、テーブルの行末にCコメントを移動するにはどうしたらいいですか?Perlを使って行頭から最後までCのコメントを移動するにはどうしたらいいですか?
私はこのようなファイルを持っている:私はPerlでそれを行うことができますどのように
array_table=
{
(unsigned int a); /* comment 1*/
(unsigned int b); /* comment 2*/
(unsigned int c); /* comment 3*/
(unsigned int d); /* comment 4*/
}
:
array_table=
{
/* comment 1*/ (unsigned int a);
/* comment 2*/ (unsigned int b);
/* comment 3*/ (unsigned int c);
/* comment 4*/ (unsigned int d);
}
を私の意図は次のように行の最後にそれらのコメントを移動するのですか?誰もがPerlコードで私を助けることができますか?このような
エラー:ENOTXTSPK – Alnitak
あなたの質問はすべて奇妙にフォーマットされている必要がありますか? – innaM
CAN HAZ TEH CODEZ? – daotoad