NICER: the Nagoya Interlanguage Corpus of English Reborn 1.0には、英語母語話者と英語学習者が執筆したエッセイファイルが収録されている。
エッセイが収録されているテキストファイルは、単に英文が収録されているわけではなく、CHAT形式で執筆者のDemographic情報やエッセイの評定、母語話者の添削、コメントなども収録されている。以下のような感じ。
@Begin @Participants: JPN501 @PID: PIDJP501 @Age: 21 @Sex: F @YearInSchool: U2 @Major: agriculture @StudyHistory: 8 @OtherLanguage: Chinese=1.0;none= @Qualification: TOEIC=590(2013);none=;none= @Abroad: none=;none= @Reading: 3 @Writing: 2 @Listening: 2 @Speaking: 1 @JapaneseEssay: 4 @EnglishEssayEx: 3 @EnglishEssay: 2 @Difficulty: @EssayTraining: 3 @SelfEval: 2 @TopicEase: 4 @Topic: sports @Criterion: 4 @Proctor: 1 @Comments: @Date: 2013-12-17 @Version: 1.0 *JPN501: What kind of sports do you like? %NTV: OK %COM: *JPN501: Do you like soccer, base ball or swimming? %NTV: Do you like soccer, baseball, or swimming? %COM: "Baseball" is one word. In lists with three or more items, put a comma between each item, including one before the final "and". *JPN501: There are many and variety sports around the world. %NTV: There are many varieties of sports around the world. %COM: *JPN501: A country has some traditional sports. %NTV: Most countries have some traditional sports. %COM: *JPN501: Of course, there are some traditional sports in Japan. %NTV: OK %COM: *JPN501: They are called "BUDO". %NTV: They are called budo. %COM: This word does not require capitalization. *JPN501: BUDO are JYUDO, KENDO, KYUDO and so on. %NTV: Budo include judo, kendo, kyudo, and so on. %COM: These words do not require capitalization. *JPN501: If you play BUDO, there is an important thing that you must remember. %NTV: If you play budo, there is one important thing you must remember. %COM: *JPN501: It is "REI". %NTV: It is rei. %COM: %par: 中略 *JPN501: We Japanese should be proud of and teach more many people around the world about this traditional sports "BUDO". %NTV: We Japanese should be proud of and teach many more people around the world about our traditional sports, budo. %COM: @End
これはこれで有益な情報なのだが、本文を構文解析等をしたい場合は、これらの情報は不要になる。必要な情報は、
*JPN501: What kind of sports do you like? *JPN501: Do you like soccer, base ball or swimming? *JPN501: There are many and variety sports around the world.
といった*JPN501:の本文の部分だけ。後は不要。
というわけで、CHAT形式で収録されている本文をplainテキストにする手順を備忘録として書いておく。
まず、1行目から28行目までは、執筆者のDemographic情報が収録されているので、1行目から28行目までは削除してしまえば良い。いろいろ方法があると思うが、いつもsedコマンドを使用しているので、sedコマンドで行数指定して、削除する。一つのファイルだけじゃなく、ディレクトリ内の全てに対して処理したいので、forループも使う。Terminal上で、以下を実行すると1行目から28行目まですべて削除できる。
Windowsの場合
for file in *.txt; do sed -Ei "1,28d" ${file}; done
Macの場合
for file in *.txt; do sed -Ei "" "1,28d" ${file}; done
次に、本文前のID(*JPN501の部分)や、%NTV、%COMといった、英語母語話者の添削文やコメント、最後の@Endの部分が不要。これも消したい。これは、正規表現を使用して、置換してやれば良い。
perl -pi -e 's/(%NTV:\t.+|%COM:\t.+|%COM:|\@End|\*JPN\d\d\d:\t)//g' *.txt
こうすることで、不要な情報が削除されるが、削除された場所は、空白行として残るので、その空白行も消したい。
perl -pi -e 's/^\n//g' *.txt
これで、空白行が消える。
最後に不要なのは、%par:の部分。これは、段落の改行を意味するので、最後に消さなければならない。%NTVなどと一緒に削除してしまうと、段落の部分がなくなってしまうので、段落は残しておきたい。ので、最後に%par:の部分を削除して、空白行として置き換えることで、段落を維持する。
perl -pi -e 's/%par://g' *.txt
これで、段落情報は維持したまま、不要な文字等をすべて削除し、本文だけのplainファイルが完成する。