I seem to have a mental block when it comes to regular expressions, so I hope you can help me.
I have a string that has this format
.* :: .* :: .*
But sometimes like this:
.* :: .*
I want to capture the first 2 groups of characters, like this
(.*) :: (.*) :: .*
But I don't know how to modify my expression so that the last :: and characters are optional. I've tried using parenthesis and ?, but I just can't get it to work as desired.
Thanks
