引用字符串解析器

时间:2019-04-01 13:49:20

标签: python python-3.x bibtex

我有很多这样的琴弦。 Python中是否有可以提取名称,日记,日期,标题等的库?

Wallace, Kelly. "Bush Stands Pat on Stem Cell Policy." CNN. 13 Aug. 2001.

我尝试使用pybtex,但不为字符串返回任何内容,它必须采用特定格式。

from pybtex.database import parse_file,parse_string
print(parse_string('Wallace, Kelly. "Bush Stands Pat on Stem Cell Policy." CNN. 13 Aug. 2001.','bibtex'))
# it returns nothing
BibliographyData(entries=OrderedCaseInsensitiveDict([]), preamble=[])

1 个答案:

答案 0 :(得分:0)

您似乎正在寻找NLP解决方案。查看NLTK:https://www.nltk.org/

没有任何固定格式,NLP是必经之路。