I am trying to learn regex but can't figure out how the following regex, which is used to identify java block comments, works:
\/\*\_.\{-}\*\/
I know that \/\* at the beginning is for matching /* and the \*\/ at the end is for matching */.
But I can't interpret \_.\{-}. What pattern does this expression identify?