隨着R,當我們把一個雙引號雙引號:解決雙引號問題中的雙qoutes中的R
y <- " " " "
它將結束了
Error: unexpected string constant in "y <- " " " ""
我的問題是如何刪除所有雙引號檢測到或在主雙引號內轉換爲單引號。
例如:
y <- "I'm watching "Prometheus"."
y
期望的結果是
#[1] "I'm watching Prometheus."
或
#[1] "I'm watching 'Prometheus'."
非常感謝。這是我正在尋找的! > y < - 掃描(what =「character」,sep =「\ n」,allowEscapes = T) 我在看「Prometheus」。 y –