-1
我有以下格式的數據:將數據轉換
輸入數據:
<http://A> <http://code.google.com/p/ldspider/ns#headerInfo> _:H <id_0> .
<id_0> <C> <http://A> <id_1> .
_:H <http://www.w3.org/2006/http#responseCode> "200"^^<http://www.w3.org/2001/XMLSchema#integer> <id_2> .
<id_2> <C> <http://A> <id_3> .
_:H <http://www.w3.org/2006/http#date> "Mon, 23 Apr 2012 13:49:27 GMT" <id_4> .
<id_4> <C> <http://A> <id_5> .
_:H <http://www.w3.org/2006/http#content-type> "application/rdf+xml; charset=UTF-8" <id_6> .
我想這個數據轉換成以下形式:
輸出數據:
#@ <id_0>
<http://A> <http://code.google.com/p/ldspider/ns#headerInfo> _:H .
#@ <id_1>
<id_0> <C> <http://A> .
#@ <id_2>
_:H <http://www.w3.org/2006/http#responseCode> "200"^^<http://www.w3.org/2001/XMLSchema#integer> .
#@ <id_3>
<id_2> <C> <http://A> .
#@ <id_4>
_:H <http://www.w3.org/2006/http#date> "Mon, 23 Apr 2012 13:49:27 GMT" .
#@ <id_5>
<id_4> <C> <http://A> .
#@ <id_6>
_:H <http://www.w3.org/2006/http#content-type> "application/rdf+xml; charset=UTF-8" .
我知道我可以很容易地使用C++解析文件來做到這一點,但我也可以使用linux命令WK等或使用Python?在這裏,我希望輸入數據的最後一列顯示爲#@輸出數據中的第一行