# -*- coding: utf-8 -*- """ Spyder Editor This is a temporary script file. """ import re pattern="媒体" text="过度消费消费的另一个显著现象是网购和社交媒体在其中起到了推波助澜的作用。相当比例的受访者认为社交媒体增强了他们的购物欲(中国大陆72%、香港66%、台湾55%、德国23%、意大利42%)。其他主要刺激购物的原因包括朋辈压力、明星效应、促销活动,如买一赠一或限量限购等手段。" match=re.search(pattern,text) s=match.start() e=match.end() print s,"-",e print text[s:e] print text[s:]
正则表达式
60 - 66