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
Post a Comment