當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R stringr str_trunc 將字符串截斷至最大寬度


將字符串截斷為固定字符,以便 str_length(str_trunc(x, n)) 始終小於或等於 n

用法

str_trunc(string, width, side = c("right", "left", "center"), ellipsis = "...")

參數

string

輸入向量。或者是一個字符向量,或者是可強製轉換為一個的東西。

width

字符串的最大寬度。

side, ellipsis

指示內容已被刪除的省略號的位置和內容。

string 長度相同的字符向量。

也可以看看

str_pad() 增加字符串的最小寬度。

例子

x <- "This string is moderately long"
rbind(
  str_trunc(x, 20, "right"),
  str_trunc(x, 20, "left"),
  str_trunc(x, 20, "center")
)
#>      [,1]                  
#> [1,] "This string is mo..."
#> [2,] "...s moderately long"
#> [3,] "This stri...ely long"
源代碼:R/trunc.R

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Truncate a string to maximum width。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。