base を使用して最初のコンマで次の文字列を効率的に分割するにはどうすればよいですか?
x <- "I want to split here, though I don't want to split elsewhere, even here."
strsplit(x, ???)
望ましい結果 (2 つの文字列):
[[1]]
[1] "I want to split here" "though I don't want to split elsewhere, even here."
前もって感謝します。
編集:これについて言及することは考えていませんでした。これは、次のように、列、つまり文字列のベクトルに一般化できる必要があります。
y <- c("Here's comma 1, and 2, see?", "Here's 2nd sting, like it, not a lot.")
結果は、2 つの列または 1 つの長いベクトル (他のすべての要素を取得できます)、または各インデックス ([[n]]) が 2 つの文字列を持つ文字列のリストになります。
明確さの欠如についてお詫び申し上げます。