R語言字符串知識點總結及實例分析
在R語言中的單引號或雙引號對中寫入的任何值都被視為字符串。 R語言存儲的每個字符串都在雙引號內,即使是使用單引號創(chuàng)建的依舊如此。
在字符串構造中應用的規(guī)則
- 在字符串的開頭和結尾的引號應該是兩個雙引號或兩個單引號。它們不能被混合。
- 雙引號可以插入到以單引號開頭和結尾的字符串中。
- 單引號可以插入以雙引號開頭和結尾的字符串。
- 雙引號不能插入以雙引號開頭和結尾的字符串。
- 單引號不能插入以單引號開頭和結尾的字符串。
有效字符串的示例
以下示例闡明了在 R 語言中創(chuàng)建字符串的規(guī)則。
a <- 'Start and end with single quote' print(a) b <- "Start and end with double quotes" print(b) c <- "single quote ' in between double quotes" print(c) d <- 'Double quotes " in between single quote' print(d)
當運行上面的代碼,我們得到以下輸出
[1] "Start and end with single quote" [1] "Start and end with double quotes" [1] "single quote ' in between double quote" [1] "Double quote " in between single quote"
無效字符串的示例
e <- 'Mixed quotes" print(e) f <- 'Single quote ' inside single quote' print(f) g <- "Double quotes " inside double quotes" print(g)
當我們運行腳本失敗給下面的結果。
...: unexpected INCOMPLETE_STRING .... unexpected symbol 1: f <- 'Single quote ' inside unexpected symbol 1: g <- "Double quotes " inside
字符串操作
連接字符串 - paste() 函數(shù)
R語言中的許多字符串使用 paste() 函數(shù)組合。 它可以采取任何數(shù)量的參數(shù)組合在一起。
語法
對于粘貼功能的基本語法是
paste(..., sep = " ", collapse = NULL)
以下是所使用的參數(shù)的說明 -
- ... 表示要組合的任意數(shù)量的自變量。
- sep 表示參數(shù)之間的任何分隔符。它是可選的。
- collapse 用于消除兩個字符串之間的空格。 但不是一個字符串的兩個字內的空間。
例
a <- "Hello" b <- 'How' c <- "are you? " print(paste(a,b,c)) print(paste(a,b,c, sep = "-")) print(paste(a,b,c, sep = "", collapse = ""))
當我們執(zhí)行上面的代碼,它產(chǎn)生以下結果
[1] "Hello How are you? " [1] "Hello-How-are you? " [1] "HelloHoware you? "
格式化數(shù)字和字符串 - format() 函數(shù)
可以使用 format() 函數(shù)將數(shù)字和字符串格式化為特定樣式。
語法
格式化函數(shù)的基本語法是
format(x, digits, nsmall, scientific, width, justify = c("left", "right", "centre", "none"))
以下是所使用的參數(shù)的描述 -
- x 是向量輸入。
- digits 是顯示的總位數(shù)。
- nsmall 是小數(shù)點右邊的最小位數(shù)。
- 科學設置為 TRUE 以顯示科學記數(shù)法。
- width 指示通過在開始處填充空白來顯示的最小寬度。
- justify 是字符串向左,右或中心的顯示。
例
# Total number of digits displayed. Last digit rounded off. result <- format(23.123456789, digits = 9) print(result) # Display numbers in scientific notation. result <- format(c(6, 13.14521), scientific = TRUE) print(result) # The minimum number of digits to the right of the decimal point. result <- format(23.47, nsmall = 5) print(result) # Format treats everything as a string. result <- format(6) print(result) # Numbers are padded with blank in the beginning for width. result <- format(13.7, width = 6) print(result) # Left justify strings. result <- format("Hello", width = 8, justify = "l") print(result) # Justfy string with center. result <- format("Hello", width = 8, justify = "c") print(result)
當我們執(zhí)行上面的代碼,它產(chǎn)生以下結果 -
[1] "23.1234568" [1] "6.000000e+00" "1.314521e+01" [1] "23.47000" [1] "6" [1] " 13.7" [1] "Hello " [1] " Hello "
計算字符串中的字符數(shù) - nchar() 函數(shù)
此函數(shù)計算字符串中包含空格的字符數(shù)。
語法
nchar() 函數(shù)的基本語法是
nchar(x)
以下是所使用的參數(shù)的描述 -
x 是向量輸入。
例
result <- nchar("Count the number of characters") print(result)
當我們執(zhí)行上面的代碼,它產(chǎn)生以下結果
[1] 30
更改case - toupper()和tolower()函數(shù)
這些函數(shù)改變字符串的字符的大小寫。
語法
toupper()和tolower()函數(shù)的基本語法是
toupper(x) tolower(x)
以下是所使用的參數(shù)的描述 -
x是向量輸入。
例
# Changing to Upper case. result <- toupper("Changing To Upper") print(result) # Changing to lower case. result <- tolower("Changing To Lower") print(result)
當我們執(zhí)行上面的代碼,它產(chǎn)生以下結果
提取
[1] "CHANGING TO UPPER" [1] "changing to lower"
字符串的一部分 - substring()函數(shù)
此函數(shù)提取字符串的部分。
語法
substring() 函數(shù)的基本語法是
substring(x,first,last)
以下是所使用的參數(shù)的描述 -
- x 是字符向量輸入。
- 首先是要提取的第一個字符的位置。
- last 是要提取的最后一個字符的位置。
例
# Extract characters from 5th to 7th position. result <- substring("Extract", 5, 7) print(result)
當我們執(zhí)行上面的代碼,它產(chǎn)生以下結果
[1] "act"
到此這篇關于R語言字符串知識點總結及實例分析的文章就介紹到這了,更多相關R語言字符串內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
R語言修改下載安裝包install.package的默認存儲路徑的操作方法
這篇文章主要介紹了R語言修改下載安裝包install.package的默認存儲路徑的操作方法,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-03-03R語言實現(xiàn)對數(shù)據(jù)框按某一列分組求組內平均值
這篇文章主要介紹了R語言實現(xiàn)對數(shù)據(jù)框按某一列分組求組內平均值,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-03-03R語言 實現(xiàn)兩表連接且輸出不重復數(shù)據(jù)
這篇文章主要介紹了R語言 實現(xiàn)兩表連接且輸出不重復數(shù)據(jù)的操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-03-03R語言數(shù)據(jù)可視化ggplot繪制置信區(qū)間與分組繪圖技巧
這篇文章主要為大家介紹了R語言數(shù)據(jù)可視化ggplot繪制置信區(qū)間與分組繪圖的技巧,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步2021-11-11R語言數(shù)據(jù)可視化繪圖Dot plot點圖畫法示例
這篇文章主要為大家介紹了R語言數(shù)據(jù)可視化繪圖Dot plot點圖的畫法示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步2022-02-02