search for: os_in_foo

Displaying 1 result from an estimated 1 matches for "os_in_foo".

2011 Feb 25
0
Named capture in regexp
...?<last>[A-Z][a-z]+)" for(i in 1:100) parsed <- gregexpr(name.rex,notables,perl=TRUE) parsed[[1]] result2list(notables,parsed) (parsed <- regexpr(name.rex,notables,perl=TRUE)) parse.one(notables,parsed) parse.one(notables,parsed)[,"last"] result <- gregexpr("f(?<os_in_foo>o*)b(?<as_in_bar>a*)r (baz)",string,perl=TRUE) print(result) s2 <- paste(rep("foobar",1030),collapse=" ") result <- gregexpr("f(?<os_in_foo>o*)b(?<as_in_bar>a*)r",s2,perl=TRUE) ## negative controls regexpr(name.rex,notables)##perl not T...