gpt4 book ai didi

python - 如何使用正则表达式匹配典型的三音素?

转载 作者:行者123 更新时间:2023-12-01 08:35:23 25 4
gpt4 key购买 nike

例如汉语有元音和辅音音素

vowels  = ['a', 'ai', 'an', 'ang', 'ao', 'e', 'ei', 'en', 'eng', 'er', 'i', 'ia', 'ian', 'iang', 'iao', 'ie', 'ii', 'iii', 'in', 'ing', 'iong', 'iou', 'o', 'ong', 'ou', 'u', 'ua', 'uai', 'uan', 'uang', 'uei', 'uen', 'ueng', 'uo', 'v', 'van', 've', 'vn', 'zh']

consonants = ['b','c','ch', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 'sh',' sp', 'sil', 't', 'x', 'z']

假设我有这样的三手机:

三音素'a-b+c'表示前一个、当前、后一个音素是a、b和c。

enter image description here

我想使用正则表达式来提取相邻的元音模式,例如 vowel-vowel+**-vowel+vowel

例如

Match: zh-uei+x, b-ai+vn, e-uang+x

Don't match: sil-z+ai, vn-l+v, x-ia+f

我使用这个代码:

v = '|'.join(vowels)           # Or v = '^'+'|'.join(consonants)
p = r'({0}\-{0}\+.*)|(.*\-{0}\+{0})'.format(v)

但是re.match(p,'z-en+iang')仍然给出False。那么如何解决呢?谢谢

最佳答案

import re

vowels = ['a', 'ai', 'an', 'ang', 'ao', 'e', 'ei', 'en', 'eng', 'er', 'i', 'ia', 'ian', 'iang', 'iao', 'ie', 'ii', 'iii', 'in', 'ing', 'iong', 'iou', 'o', 'ong', 'ou', 'u', 'ua', 'uai', 'uan', 'uang', 'uei', 'uen', 'ueng', 'uo', 'v', 'van', 've', 'vn', 'zh']
consonants = ['b','c','ch', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 'sh','sp', 'sil', 't', 'x', 'z']
# joining vowels with |
vowels_string = '|'.join(vowels)
# joining consonants with |
consonants_string = '|'.join(consonants)

# joining all characters with |
all_chars = "{}|{}".format(vowels_string, consonants_string)

reg1 = '^(?:{1})-(?:{0})\+(?:{0})$'.format(vowels_string, all_chars) # allchars-vowel+vowel
reg2 = '^(?:{0})-(?:{0})\+(?:{1})$'.format(vowels_string, all_chars) # vowel-vowel+allchars

# compiling the regex
regex = re.compile(
'({})|({})'.format(reg1, reg2)
)

# testing
print(re.match(regex, 'zh-uei+x'))
print(re.match(regex, 'b-ai+vn'))
print(re.match(regex, 'e-uang+x'))
print(re.match(regex, 'z-en+iang'))

print(re.match(regex, 'sil-z+ai'))
print(re.match(regex, 'vn-l+v'))
print(re.match(regex, 'x-ia+f'))
  • vowels_string 包含所有用或 (|) 分隔的元音
  • consonants_string 包含所有用 或 (|) 分隔的辅音

  • all_chars 包含所有用或 (|) 分隔的字符

正则表达式如下:(1 是 all_chars,0 是 vowels_string)

'^ -> beginning of string
(?:{1}) -> all characters
-
(?:{0}) -> vowels
\+
(?:{0}) -> vowels
$'-> end of string

关于python - 如何使用正则表达式匹配典型的三音素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53754004/

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