- 1. finding substrings (score: 1)
- Author: Dave Evens <devens8765@yahoo.com>
- Date: Tue, 13 Sep 2005 02:23:27 -0700 (PDT)
- Dear all, I would like to find the exact match of a substring(/sub-vector) within a string (/vector). For example, suppose I have x <- c(F, F, F, T, T, F, F, T, T, F, F, T, T, T, F, F, F, F, F, T, T,
- /archives/html/s-news/2005-09/msg00028.html (7,483 bytes)
- 2. Re: finding substrings (score: 1)
- Author: Sundar Dorai-Raj <sundar.dorai-raj@pdf.com>
- Date: Tue, 13 Sep 2005 04:40:30 -0500
- I would like to find the exact match of a substring(/sub-vector) within a string (/vector). For example, suppose I have x <- c(F, F, F, T, T, F, F, T, T, F, F, T, T, T, F, F, F, F, F, T, T, T, F, F,
- /archives/html/s-news/2005-09/msg00029.html (8,433 bytes)
- 3. Re: finding substrings (score: 1)
- Author: "Dimitris Rizopoulos" <dimitris.rizopoulos@med.kuleuven.be>
- Date: Tue, 13 Sep 2005 12:10:42 +0200
- you could try something like this: x <- paste(as.numeric(x), collapse = "") y <- paste(as.numeric(y), collapse = "") nx <- nchar(x) ny <- nchar(y) out <- substring(x, seq(1, nx - ny + 1), seq(ny, nx)
- /archives/html/s-news/2005-09/msg00030.html (9,265 bytes)
- 4. Re: finding substrings (score: 1)
- Author: David L Lorenz <lorenz@usgs.gov>
- Date: Tue, 13 Sep 2005 08:51:49 -0500
- This is probably best done by using the ability of aggregateSeries to compute running statistics. I did not make this a generic function, but with some work, that could be done. Here's the concrete
- /archives/html/s-news/2005-09/msg00032.html (10,233 bytes)
This search system is powered by
Namazu