-
Notifications
You must be signed in to change notification settings - Fork 195
Closed
Labels
featurea feature request or enhancementa feature request or enhancement
Description
vchs= "中,中中,中中中"
yc=str_split(vchs,",",simplify = T)
print(yc)
[,1] [,2] [,3]
[1,] "中" "中中" "中中中"
yl=str_length(yc)
print(yl)
[1] 1 2 3
print(max(yl))
[1] 3
ycd=stringr::str_pad(yc,width=max(str_length(yc)),side = "right",pad=" ")
ycd
[1] "中 " "中中" "中中中"
ycd=stringr::str_pad(yc,width=2*max(str_length(yc)),side = "right",pad=" ")
ycd
[1] "中 " "中中 " "中中中"
Metadata
Metadata
Assignees
Labels
featurea feature request or enhancementa feature request or enhancement