Skip to content

options other than regex

3 messages · Greg Minshall, Evan Cooch, Alex Zarebski

#
Evan,

are you really looking at numbers, or just at character strings (that,
in your case, happen to be numbers)?  if just characters, this rather
odd combination of strsplit() and Reduce() might do the trick:
----
[1] "10110111"
[1] "1.0.1.1.0.1.1.1."
----

cheers.
#
Numbers -- thanks. Another clever trick.
On 5/25/2018 11:54 AM, Greg Minshall wrote:

  
  
#
The stringr package might beof interest to you (and I think magrittr makes
it more readable).
[1] "1.0.1.1.0.1.1.1"

Note that the unlist is there because we are only applying this to a single
string.
If you were to apply this to a character vector you could loose the unlist
and sapply the flatten.
On Sat, May 26, 2018 at 2:09 AM, Evan Cooch <evan.cooch at gmail.com> wrote: