R/removeLeadingSlashes.R
removeLeadingSlashes.Rd
Remove Leading Slashes of Strings
removeLeadingSlashes(x)
vector of character
modified version of x with all leading slashes in all elements of x removed
x
removeLeadingSlashes(c("a", "/b", "//c")) #> [1] "a" "b" "c"