[R] Fw: Extract upper case letters
mdvaan
mathijsdevaan at gmail.com
Thu Jun 28 20:33:59 CEST 2012
Thanks, all solutions worked like a charm.
Math
arun kirshna wrote
>
> ----- Forwarded Message -----
> From: arun <smartpink111@>
> To: mdvaan <mathijsdevaan@>
> Cc: R help <r-help@>
> 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@>
> To: r-help@
> 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@ 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.
>
> ______________________________________________
> R-help@ 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.
>
--
View this message in context: http://r.789695.n4.nabble.com/Extract-upper-case-letters-tp4634664p4634802.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list