strtrim()
R語言中的函數用於將字符串修剪到指定的顯示寬度。
用法: strtrim(x, width)
參數:
x:字符向量
width:指定寬度
範例1:
# R program to trim a string
# to specified width
# Creating a vector
x1 <- "GeeksforGeeks"
x2 <- "R Programming"
# Calling strtrim() function
strtrim(x1, 5)
strtrim(x2, 7)
輸出:
[1] "Geeks" [1] "R Progr"
範例2:
# R program to trim a string
# to specified width
# Creating a vector
x <- c("Hello", "Geeks", "GFG")
# Calling strtrim() function
strtrim(x, 2)
strtrim(x, c(1, 2, 3))
輸出:
[1] "He" "Ge" "GF" [1] "H" "Ge" "GFG"
相關用法
- R語言 word()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 curve()用法及代碼示例
- R語言 signif()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 polygon()用法及代碼示例
- R語言 rep_len()用法及代碼示例
- R語言 rep.int()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 seq.int()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 colorRampPalette()用法及代碼示例
- R語言 str()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
- R語言 terrain.colors()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Trim a String to a Specified Display Width in R Programming – strtrim() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。