# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility
import re
regex = r"^(Depense|Recette)_Aller_\d*_*(FEDER|RR974|POCT)_\d{2}_\d{4}_\d{1,2}_\d+C\w*.xml$"
test_str = ("Depense_Aller_4689.xml : flux PJ seul, bordereau déjà envoyé, à ne pas signer\n\n"
"Depense_Aller_4659_661C.xml : flux complet, à signer DAF\n\n"
"Depense_Aller_FEDER_01_2017_1_19C.xml\n\n"
"Depense_Aller_FEDER_01_2017_1_19C_Auto.xml\n"
"Depense_Aller_7864_FEDER_01_2017_2_19C_Auto.xml\n\n"
"Depense_Aller_4344_SMPRR_01_2017_2_34C_Auto.xml\n\n"
"Depense_Aller_4344_RR974_01_2017_6_566C_Auto.xml\n"
"Depense_Aller_4038_RR974_01_2017_473C_Auto.xml\n\n"
"Depense_Aller_3469_RR974_01_2017_271C_Auto.xml : flux complet paye, à signer RH\n\n"
"Depense_Aller_4271_FEDER_01_2016_5A_Auto.xml : flux en annulation, à ne pas signer\n\n"
"Depense_Aller_2649_RR974_01_2017_5C_Auto.xml : flux indemnités élus Région, à signer par ?\n\n"
"Depense_Aller_3222_RR974_01_2017_216C_Auto.xml : flux indemnités élus CESER, à signer par ?\n\n"
"Depense_Aller_3222_RR974_01_2017_219C_Auto.xml : flux indemnités élus CCEE, à signer par ?\n\n\n"
"Appgfi\\wwwGFTEST\\astre\\astromate\\pes\\recette :\n\n"
"Recette_Aller_4271_RR974_01_2017_6C_Auto.xml : flux recette, à signer DAF\n\n"
"Recette_Aller_4271_RR974_01_2016_21A_Auto.xml : flux recette en annulation, à ne pas signer\n")
subst = ""
# You can manually specify the number of replacements by changing the 4th argument
result = re.sub(regex, subst, test_str, 0)
if result:
print (result)
# Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html