Displaying 1 result from an estimated 1 matches for "clipperton".
2008 Jun 13
1
parsing - input buffer overflow
...t is
too large.
This problem has been mentioned before, which I found using the RSiteSearch.
However, the post is from 2006, and I thought it might have improved by now.
Is there any way to increase the limit or to get around this problem?
x="Saint Lucia, Saint Kitts and Nevis, Saint Helena, Clipperton Island,
Tristan da Cunha"
#What I want to achieve is to parse the text for the number of occurrences
of a certain character string within the text.
#This is done using:
n=100 #choose n large enough
length(which(is.na(gregexpr("Saint",x,ignore.case=TRUE)[[1]][1:n])==FALSE))
But ag...