Displaying 1 result from an estimated 1 matches for "r48181".
Did you mean:
  148181
  
2009 Mar 22
0
gsub('(.).(.)(.)', '\\3\\2\\1', 'gsub') (PR#13617)
Full_Name: Wacek Kusnierczyk
Version: 2.10.0 r48181
OS: Ubuntu 8.04 Linux 32bit
Submission from: (NULL) (129.241.199.135)
there seems to be something wrong with r's regexing.  consider the following
example:
    gregexpr('a*|b', 'ab')
    # positions: 1 2
    # lengths: 1 1
    gsub('a*|b', '.', 'ab')...