暂无 |

元字符

另一个重要元是 | 这意味着“或”,所以红蓝色匹配“红色”或“蓝色”。

例如:

import re

pattern = r"gr(a|e)y"

match = re.match(pattern, "gray")
if match:
   print ("Match 1")

match = re.match(pattern, "grey")
if match:
   print ("Match 2")    

match = re.match(pattern, "griy")
if match:
    print ("Match 3")

结果:

>>>
Match 1
Match 2
>>>

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论