Try:

sapply(strsplit(TEXT, ';'), '[', 1)

On Fri, Apr 11, 2008 at 8:12 AM, Dennis Fisher <[EMAIL PROTECTED]> wrote:

> Colleagues,
>
> I have some text:
>        TEXT    <- c("a", "bb;ccc", "dddd;eeeee;ffffff")
>
> I want to retrieve the portion of each element before the first
> semicolon.  I can split each element using strsplit:
>
>        SPLIT   <- strsplit(TEXT, ";")
>
> This yields:
>  > SPLIT
> [[1]]
> [1] "a"
>
> [[2]]
> [1] "bb"  "ccc"
>
> [[3]]
> [1] "dddd"   "eeeee"  "ffffff"
>
> Now I need to access the [1] portions of [[n]] - ("a", "bb",
> "dddd").  I suspect that sapply is the correct tool here but the
> syntax eludes me.  Can anyone direct me to the correct syntax?
>
> Dennis
>
>
> Dennis Fisher MD
> P < (The "P Less Than" Company)
> Phone: 1-866-PLessThan (1-866-753-7784)
> Fax: 1-415-564-2220
> www.PLessThan.com
>
>
>        [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help@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.
>



-- 
Henrique Dallazuanna
Curitiba-Paraná-Brasil
25° 25' 40" S 49° 16' 22" O

        [[alternative HTML version deleted]]

______________________________________________
R-help@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.

Reply via email to