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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。