[R] Fw: Extract upper case letters

arun smartpink111 at yahoo.com
Thu Jun 28 14:36:44 CEST 2012





----- Forwarded Message -----
From: arun <smartpink111 at yahoo.com>
To: mdvaan <mathijsdevaan at gmail.com>
Cc: R help <r-help at r-project.org>
Sent: Thursday, June 28, 2012 1:44 AM
Subject: Re: [R] Extract upper case letters

Hi,

Try this:
t <- "TheWeatherIsVeryNice"
 t1<-gsub("[:A-Z:]","",t)
 t1
[1] "heeatherseryice"


t2<-gsub("[:a-z:]","",t)
> t2
[1] "TWIVN"


A.K.




----- Original Message -----
From: mdvaan <mathijsdevaan at gmail.com>
To: r-help at r-project.org
Cc: 
Sent: Wednesday, June 27, 2012 3:15 PM
Subject: [R] Extract upper case letters

t <- "TheWeatherIsVeryNice"

How do I extract the upper case letters? - TWIVN

Thanks!

--
View this message in context: http://r.789695.n4.nabble.com/Extract-upper-case-letters-tp4634664.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list