如何检查字符串是否在python中包含特定格式?

时间:2018-08-15 16:16:42

标签: string python-3.x format include contain

例如,在python 3中,我想检查一个字符串是否包含_{}P_,{}可以是任何数字,例如_5P__10P_?我应该使用re吗?

1 个答案:

答案 0 :(得分:1)

使用re.search

import re
if re.search(r'_\d+P_', your_string):
    print ('String contains pattern _[digits]P_')