-
Notifications
You must be signed in to change notification settings - Fork 845
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
无法理解正则表达式附录的eliza模块中的匹配规则 #1514
Comments
这个问题的关键是你要理解
而你的例子里的函数 def f(x):
return re.compile(x[0], re.IGNORECASE) 也就是说, 再来看要被函数 gPats = [
[
r'I need (.*)',
[
"Why do you need %1?", "Would it really help you to get %1?",
"Are you sure you need %1?"
]
],
[
r'Why don\'?t you ([^\?]*)\??',
[
"Do you really think I don't %1?", "Perhaps eventually I will %1.",
"Do you really want me to %1?"
]
],
[
r'Why can\'?t I ([^\?]*)\??',
[
"Do you think you should be able to %1?",
"If you could %1, what would you do?",
"I don't know -- why can't you %1?", "Have you really tried?"
]
],
...
] 这个列表的每个元素都是一个小列表,每个小列表里有两个元素,第一个是个正则匹配串,比如 事实上,如果你搞不清楚一些问题,最好的办法是把整个代码放进一个 Jupyter Notebook,分段落执行,看每一步的输出结果,有些问题的答案自己就能猜出来了。 |
老师,有个疑惑。已经尝试理解,Eliza模块的基本结构与逻辑。为了追求更深入的理解。是否应该尝试理解为什么它要这么写,或者进一步开始模仿吗? |
个人认为更好的思路是,要么自己扔开这个实现自己尝试写个出来(之前研究原代码得到的知识可以用),要么尝试改进原代码实现更多功能,后者更容易一些。 |
大致了解并练习了本章节的主要语法与用法,打算尝试理解eliza模块。我的思路,直接从头阅读源代码。
但以下代码,尝试简化并拆分。但还是无法理解。
代码如下:
list函数中嵌套着map函数,其中函数为lambda表达式,参数
x
,匹配规则为参数x + 集合原子[0]。re.IGNORECASE我查了一下,这个标志允许正则表达式与给定的字符串进行不区分大小写的匹配。gPats为可迭代对象,以下是gPats具体的值。
老师这一整个嵌套的列套是一个整体的匹配规则吗?
还是说,在逗号分隔的地方为一个匹配规则。我也尝试把此规则放进regex101,但还是不能理解,希望老师给点线索。
The text was updated successfully, but these errors were encountered: