単語の改行を省略せずに、真の引用符をスマートスマート引用符に変更する方法です。
この例には、一重引用符と二重引用符が含まれています。
入力する
1 I have bowed before only one sanyasi in my life, and that is 'Sri
2 Chandrasekharendra Saraswathi', known to the world as the "Parmacharya."
3
4 Therefore, I was the ''modern
5 Indian'',believer in science, and
6 with little concern for spiritual
7 diversions.
出力
1 I have bowed before only one sanyasi in my life, and that is ‘Sri
2 Chandrasekharendra Saraswathi’, known to the world as the “Parmacharya.”
3
4 Therefore, I was the “modern
5 Indian”,believer in science, and with
6 little concern for spiritual
7 diversions.
答え1
改行が問題にならないようにするには、段落全体またはファイル全体が単一の文字列として扱われるように置換を実行できます。 Perlを使用すると、-0777
ファイル全体を一度に読み取ったり、-00
段落モード(つまり、空白行で区切られたセクション、行番号が入力ファイルの一部ではない)を使用したりできます。
$ perl -0777 -pe 's/\x27\x27/"/g; s/\x27(.*?)\x27/‘$1’/gs; s/"(.*?)"/“$1”/gs; ' input
I have bowed before only one sanyasi in my life, and that is ‘Sri
Chandrasekharendra Saraswathi’, known to the world as the “Parmacharya.”
Therefore, I was the “modern
Indian”, believer in science, and
with little concern for spiritual
diversions.
\x27
私は引用をより簡単にするために単一引用符の16進表現を使用します。.*?
すべての文字列を表しますが、できるだけ短い一致を示します。最初のルールは二重引用符を''
二重引用符に変更します。
あるいは、GNU sedと同様に、-z
入力をNULで区切られた文字列にインポートすると、通常のテキストファイルを一度に読み取ることができます。
$ sed -zEe 's/\x27\x27/"/g; s/\x27([^\x27]*)\x27/‘\1’/g; s/"([^"]*)"/“\1”/g; ' input
I have bowed before only one sanyasi in my life, and that is ‘Sri
Chandrasekharendra Saraswathi’, known to the world as the “Parmacharya.”
Therefore, I was the “modern
Indian”, believer in science, and
with little concern for spiritual
diversions.
答え2
答え3
Perlの単語文字クラスに完全に依存する単純な実装です。 ["]のみ["]または["]に変更してください。
#!/usr/bin/perl -w -0777
local $/ = undef;
open INFILE, $ARGV[0] or die "I can't read the file. $!";
$string = <INFILE>;
close INFILE;
$string =~ s/(\w)\"/$1”/smg;
$string =~ s/\"(\w)/„$1/smg;
open OUTFILE, ">", $ARGV[1] or die "I can't write to the file. $!";
print OUTFILE ($string);
close
別の名前で保存しscript.pl
て実行してくださいperl script.pl INFILE OUTFILE
。次に、|aaaaaa"bbbb|や|aaaa"bbbb|など、誤って配置された真の引用符を検索します。