Feat: lot s'adapte meme sans espace avant le tiret
This commit is contained in:
parent
44d4150910
commit
5692898137
@ -30,7 +30,7 @@ def is_it(page_text):
|
|||||||
|
|
||||||
def get_lot(txt):
|
def get_lot(txt):
|
||||||
"""Return lot number from "RECAPITULATIF DES OPERATIONS" """
|
"""Return lot number from "RECAPITULATIF DES OPERATIONS" """
|
||||||
regex = r"[BSM](\d+)\s-"
|
regex = r"[BSM](\d+)(?=\s*-)"
|
||||||
result = re.findall(regex, txt)
|
result = re.findall(regex, txt)
|
||||||
if result:
|
if result:
|
||||||
return "{:02d}".format(int(result[0]))
|
return "{:02d}".format(int(result[0]))
|
||||||
|
Loading…
Reference in New Issue
Block a user