YARQ(又一个正则表达式问题)。
我将如何将以下内容分成两列,确保最后一列包含句子中的最后一个单词,而第一列包含其他所有内容。
x <- c("This is a test",
"Testing 1,2,3 Hello",
"Foo Bar",
"Random 214274(%*(^(* Sample",
"Some Hyphenated-Thing"
)
这样我最终得到:
col1 col2
this is a test
Testing 1,2,3 Hello
Foo Bar
Random 214274(%*(^(* Sample
Some Hyphenated-Thing