gpt4 book ai didi

python - 用正则表达式解析和弦

转载 作者:行者123 更新时间:2023-12-01 05:48:21 26 4
gpt4 key购买 nike

我想在 python 中使用正则表达式解析和弦名称。以下代码仅匹配 G#m 等和弦

chord_regex = "(?P<chord>[A-G])(?P<accidental>#|b)?(?P<additional>m?)"

我怎样才能将和弦与形状 Gm# 相匹配?可以更改上述正则表达式以匹配这些类型的和弦吗?

最佳答案

您应该使用 {m,n} 语法来指定组的 m=0n=2 匹配项(其中表示组要​​么是偶然的,要么是附加的),如下所示:

>>> import re
>>> regex = "(?P<chord>[A-G])((?P<accidental>#|b)|(?P<additional>m)){0,2}"
>>> re.match(regex, "Gm").groupdict()
{'chord': 'G', 'additional': 'm', 'accidental': None}
>>> re.match(regex, "G").groupdict()
{'chord': 'G', 'additional': None, 'accidental': None}
>>> re.match(regex, "G#m").groupdict()
{'chord': 'G', 'additional': 'm', 'accidental': '#'}
>>> re.match(regex, "Gm#").groupdict()
{'chord': 'G', 'additional': 'm', 'accidental': '#'}

关于python - 用正则表达式解析和弦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15326204/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com