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

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -