1
取代所有其他的空間,我有一個字符串是這樣的:新線
a <- "this string has an even number of words"
b <- "this string doesn't have an even number of words"
我想更換新線所有其他空間。所以輸出應該是這樣的......
myfunc(a)
# "this string\nhas an\neven number\nof words"
myfunc(b)
# "this string\ndoesn't have\nan even\nnumber of\nwords"
我已經做了strsplit
,paste
-ing於偶數的話換行回到一起完成這一點,那麼他們paste(a, collapse=" ")
成一個字符串。是否有與gsub
一起使用的正則表達式,可以實現這一點?
嘿你介意解釋一下正則表達式,以便下次得到它嗎?謝謝! – cory