Displaying 2 results from an estimated 2 matches for "do_p".
Did you mean:
do_
2009 Mar 22
0
gsub('(.).(.)(.)', '\\3\\2\\1', 'gsub')
...# "..c.", wrong (but now only 'c' remains)
gsub('a|b*|c', '.', 'aba', perl=TRUE)
# "...", incidentally correct
without detailed analysis of the code, i guess the bug is located
somewhere in src/main/pcre.c, and is distributed among the do_p*
functions, so that multiple fixes may be needed.
vQ
2009 Mar 22
0
gsub('(.).(.)(.)', '\\3\\2\\1', 'gsub') (PR#13617)
...# "..c.", wrong (but now only 'c' remains)
gsub('a|b*|c', '.', 'aba', perl=TRUE)
# "...", incidentally correct
without detailed analysis of the code, i guess the bug is located somewhere in
src/main/pcre.c, and is distributed among the do_p* functions, so that multiple
fixes may be needed.