匹配时间
desc='【计划周期】3.25-3.27</span></p><p><span style="color: rgb(74, 74, 74);">【实际周期】3<span>.25-</span></p><p><span style="color: rgb(74, 74, 74);">【进度跟踪】</span></p><p><span style="color: rgb(74, 74, 74);">3.25 </span></p><p><br></p><p><span style="color: rgb(74, 74, 74);'
step1:删除多余的标签字符串
des = ((((desc.replace('</span>','')).replace('</p>','')).replace('<p>','')).replace('<span style="color: rgb(74, 74, 74);">','')).replace('<span>','').replace('<br>','')
print(des)
>>【计划周期】3.25-3.27【实际周期】3.25-【进度跟踪】3.25 <span style="color: rgb(74, 74, 74);
<