Is there a way to parse regex from right to left in python?
I have a few huge regexes that take about a second to run on my input, for a total run-time of a few minutes. So I tried to test the performance of my regexes, and regexhero had an option to parse regex from right to left, which resulted in about a million times faster execution because of quicker failing.