Is there a other version to make the first letter of each string capital and also with FALSE for flac perl?
name<-"hallo"
gsub("(^[[:alpha:]])", "\U\1", name, perl=TRUE)
See Question&Answers more detail:osIs there a other version to make the first letter of each string capital and also with FALSE for flac perl?
name<-"hallo"
gsub("(^[[:alpha:]])", "\U\1", name, perl=TRUE)
See Question&Answers more detail:osYou can try something like:
name<-"hallo"
paste(toupper(substr(name, 1, 1)), substr(name, 2, nchar(name)), sep="")
Or another way is to have a function like:
firstup <- function(x) {
substr(x, 1, 1) <- toupper(substr(x, 1, 1))
x
}
Examples:
firstup("abcd")
## [1] Abcd
firstup(c("hello", "world"))
## [1] "Hello" "World"