I tried the following call in R and expected 'CCC' matched because it is supposed to be a greedy matching,
str_view('ACCC','C{0,3}')
but nothing matched. However the following call works fine ('A' is removed, then 'CCC' is matched)
str_view('CCC','C{0,3}')
Is this a bug of stringr::str_view? Or I misunderstand something?