I use all the time regex formula în Perl ore Notepad++, but Python don’t know the operators such as \K , \R, \G or (*SKIP)(*FAIL) (*PRUNE)…and much more.
these are very important in solving problems and are absolutely necessary because they simplify things a lot. See 2 links Below . it would be very nice if Python manage to be able to use these very important operators.
All but \R are supported in the regex module. What with Python’s “universal line endings”, the different kinds of line endings are usually converted to \n, so there’s not much need for it.