如何在文本文档中定位文本块的位置

时间:2014-03-12 09:06:04

标签: python text find

我的目标是在下面的示例中找到text2text1的位置:

>>> text1='young lady  and lived in a firm so outside the cathedral close  it was somberly furnished  and full of dark young portraits'
>>> text2='the cathedral close it was sombrely furnished and full of dark'
>>> findtext2=text1.find(text2)
>>> findtext2
    -1

输出:-1 ...这意味着text2无法找到text1

理想输出:42

关于如何解决这个问题的任何想法?

1 个答案:

答案 0 :(得分:1)

您正在使用正确的方法find。只是“笨拙”在text1拼写不正确,反之亦然(无论你认为哪个适合你)。同时检查text1text2中的空格不匹配。