Por que esta regex usando lookbehinds é inválida em R?

Eu estou tentando fazer um regex lookbehind em R para encontrar um padrão. Espero que isso puxe o 'b' em 'bob', mas ao invés disso eu recebo um erro.

> regexpr("(?<=a)b","thingamabob")
Error in regexpr("(?<=a)b", "thingamabob") : 
invalid regular expression '(?<=a)b', reason 'Invalid regexp'

Isso não gera um erro, mas também não encontra nada.

> regexpr("(.<=a)b","thingamabob")
[1] -1
attr(,"match.length")
[1] -1
attr(,"useBytes")
[1] TRUE

Estou confuso porque a página de ajuda para regexpr especificamente indica que lookbehind deve funcionar:http://stat.ethz.ch/R-manual/R-patched/library/base/html/regex.html

Alguma ideia?

questionAnswers(1)

yourAnswerToTheQuestion