Ignore First Character in Regex Match
You can use:
.*?>(\w+)<
Here you can check a working example:
Debuggex Demo
Possible workaround would be to match non >
characters:
[^>]+(?=<\/a>)
regex101 demo
Or you take the substring of each of your results in the code itself.