import re print( re.sub(r'(foo)(bar)',r'\g<2>\g<1>','foobar'))
More info here https://www.regular-expressions.info/replacebackref.html
import re print( re.sub(r'(foo)(bar)',r'\g<2>\g<1>','foobar'))
# coding=CP1252 import re text = """ LADY CAPULET Alack the day. She’s dead, she’s dead, she’s dead! CAPULET Ha! Let me see her. Out, alas! She’s cold. Her blood is settled, and her joints are stiff. Life and these lips have long been separated. Death lies on her like an untimely frost Upon the sweetest flower of all the field. Nurse O lamentable day! """
autorep -j YOUR_JOB_OR_BOX_NAME | sed -e 's/ \{2,\}/|/g'| sed -e 's/_\{2,\}/ /g' | sed 's/\(.*\)/|\1/g' | sed -e 's/\(Job Name\)/|\1/g' | sed -e 's/\(Last Start\)/|\1/g' | sed -e 's/\(Last End\)/|\1|/g'| sed -e 's/ST Run/ST||Run/g' | sed -e 's/Ntry Pri\/Xit/Ntry||Pri\/Xit||/g'| sed -e 's/\(.*\)\([0-9]\{8\}\/[0-9]*\)/\1|\2|/g' |