id= matches the characters id= literally (case sensitive)
1st Capturing Group (\d*)
\d*
matches a digit (equal to [0-9])* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
&tok= matches the characters &tok= literally (case sensitive)
.*
matches any character (except for line terminators)Line terminator(s) are \n
* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)