Positive and Negative Lookahead Challenge example

In the solution to this example I understand what (?=\w{6}) is saying, but can someone explain this code (?=\w*\d{2})? It’s asking to match 2 consecutive digits (\d{2}), but where does the \w* come from?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.