I have a file with those data :
PAS_BEGIN_0009999
T71_MANUFACTURER_4=98
T71_COLOR_ID_7=000
T71_OS_7=08
PAS_END_0009999
PAS_BEGIN_0009996
T72_VAS_SERVICE_IDENTIFIER_6=
T72_ORDER_NB_7=0003
T72_TECHNOLOGY_7=01
PAS_END_0009996
TPV_BEGIN
PAS_20819001=3600000
TPV_END
How can I simply isolate content betweenPAS_BEGIN_0009996
and PAS_BEGIN_0009996
Here is a link for the example : https://regexr.com/3vmeq
It finds something, but my python code doesn't find anything..
if re.match("PAS_BEGIN_0009999([\S\s]*)PAS_END_0009999", line):
data.append(line)
print(line)
Can anyone help me on this ? Thanks