I have this pattern: "(\?(.+?))\b".
In python, what should happen, is findall should return ("?var", "var") if i run it on the string: "some text ?var etc".
It works normally elsewhere, here's a regexr for proof.
In python, re's findall returns an empty list. Why is that?
remodule documentation starts off by explaining how to solve your problem.