is this a bug of stringr::str_view in R? -


i tried following call in r , expected 'ccc' matched because supposed greedy matching,

str_view('accc','c{0,3}') 

but nothing matched. following call works fine ('a' removed, 'ccc' matched)

str_view('ccc','c{0,3}') 

is bug of stringr::str_view? or misunderstand something?


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

minify - Minimizing css files -

php - How to remove letter in front of the word laravel -