Skip to content
Prev 319505 / 398506 Next

Working with string

Hello again,

Let say I have following string:

Vec <- c("sada", "asdsa", "sa")

Now I want to make each element of this vector with equal length.
Basically I want following vector:

c("sada ", "asdsa", "sa   ")

Therefore we can get:
[1] 5 5 5


Is there any possiblity that we can do it programetically? Because I
need to handle a really big vector.

Thanks for your help.