1 つの段落を持つ 1 つの入力ファイルがあります。段落をパターンごとに 2 つのサブ段落に分割する必要があります。
段落.xml
<Text>
This is first line.
This is second line.
\delemiter\new\one
This is third line.
This is fourth line.
</Text>
R コード:
doc<-xmlTreeParse("paragraph.xml")
top = xmlRoot(doc)
text<-top[[1]]
この段落を 2 つの段落に分割する必要があります。
段落1
This is first line.
This is second line.
段落2
This is third line.
This is fourth line.
strsplit 関数は非常に便利ですが、複数行のテキストを分割することはありません。