Trying to match a letter at the end of a line only if there's a digit at the start, and an equals in the middle, and getting the mentionned error:
regex.compile("(?<=\\d.*= ?)[qwerty]\\b\\n?")```
I assume it's because i'm using the `*` and `?` characters which may match an unknown lengh and that godot can't handle that. Is there any way I can get around it, other than matching the whole line?