I need to convert all words in a vector to upper format. Assume that I have this vector :
V <- c("Xyz", "zEr", "Zyx")
The result should be:
"XYZ" "ZER" "ZYX"
How can I do it please?
I need to convert all words in a vector to upper format. Assume that I have this vector :
V <- c("Xyz", "zEr", "Zyx")
The result should be:
"XYZ" "ZER" "ZYX"
How can I do it please?