def match_exp_pkt_ignore_parts(exp_pkt,pkt,ignore_list):
e = str(exp_pkt)
p = str(okt)
if len(e)<60:
p = p[:len(e)]
start_p = 0
for (u,v) in ignore_list:
if (e[start_p:u]!=p[start_p:u]):
return False
start_p=v
if (e[start_p:-1]!=p[start_p:-1]):
return False
return True