gpt4 book ai didi

python - 在 nltk 正则表达式中包含单词

转载 作者:太空宇宙 更新时间:2023-11-04 03:40:15 24 4
gpt4 key购买 nike

NLTK 正则表达式适用于以下标签:

<DT>? <JJ>* <NN>*

有没有办法在正则表达式中包含单词?即:"<N> <such> <as> <N> <and> <N>"

最佳答案

我记得<DT>? <JJ>* <NN>*是 block 模式。 block 模式使用 tag_pattern2re_pattern() 在内部转换为正则表达式功能:

>>> from nltk.chunk import tag_pattern2re_pattern
>>> tag_pattern2re_pattern('<DT>?<NN.*>+')
'(<(DT)>)?(<(NN[^\\{\\}<>]*)>)+'

然后你可以把你的话放在正则表达式模式结果中。

关于python - 在 nltk 正则表达式中包含单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26828146/

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