79648109

Date: 2025-06-02 02:13:25
Score: 0.5
Natty:
Report link

Use \K before (\d+), like this:

(?<=fill:#00d5ff)[\s\S]*?\K(\d+)(?=<\/tspan>)

\K resets the starting point of the reported match. Any previously consumed characters are no longer included in the final match.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Necronomicron