试图从简历中提取 phone 个数字
trying to extract phone number from a resume
当我尝试使用 findall
函数时出现此错误:
AttributeError: 'str' object has no attribute 'findall'
这是我的代码:
def phone(content):
content.findall(r"<.*><phone><.*><.*><.*>")
您是否尝试使用正则表达式?在这种情况下,语法是 re.findall(pattern, string, flags=0)
,因此在您的情况下是 re.findall("<.*><phone><.*><.*><.*>", content)
。请参阅文档 here。请注意,此 returns 是一个列表,您可以通过使用 [x]
.
进行索引来访问结果
当我尝试使用 findall
函数时出现此错误:
AttributeError: 'str' object has no attribute 'findall'
这是我的代码:
def phone(content):
content.findall(r"<.*><phone><.*><.*><.*>")
您是否尝试使用正则表达式?在这种情况下,语法是 re.findall(pattern, string, flags=0)
,因此在您的情况下是 re.findall("<.*><phone><.*><.*><.*>", content)
。请参阅文档 here。请注意,此 returns 是一个列表,您可以通过使用 [x]
.