Can someone explain to me, why/when I should use positive lookarounds in Regex? For negative lookarounds I can think of scenarios where they are the only solution, but for positive lookarounds I don't see why to use them, when their result can also be produced by using capture groups.
For example:
Input: Bus: red, Car: blue
I want to color of the car.
With lookaround: (?<=Car: )\w+
With capture group: Car: (\w+)
Both Regex archive the same result - direct access to the color-match. So are there cases which can only be solved by positive lookarounds?