在任何情况下,Python检查字都存在于字符串内容中

时间:2014-10-30 05:20:38

标签: python python-2.7

这是否简单 string_line 是否存在 keyword

关键字已存在但仍在 if condition 内部。

关键字存在,但在 mixed case 中,为什么无法捕获混合大小写或大写字母。

string_line = '<p>this is real crm and for real CRM amd and Read Crm.</p>\r\n'
keyword = 'Real CRM'

if keyword not in string_line:
    print "Keyword Not Found____"
else:
    print "Keyword Found____"

如何检查关键字是否存在相同的情况或混合情况,然后返回在字符串中找到的关键字?

1 个答案:

答案 0 :(得分:3)

将案例更改为相同:

string_line = '<p>this is real crm and for real CRM amd and Read Crm.</p>\r\n'
keyword = 'Real CRM'

if keyword.lower() in string_line.lower():
    print "Keyword found"
else:
    print "Keyword not found"