如何找到一个字符串空间内的字符串不敏感?

这个问题在这里已经有了答案:

  • Python是否有一个字符串'contains'substring方法? 13个答案

  • 简单:

    string = 'odfsdlkfn dskfThe Moonaosjfsl dflkfn'
    if 'The Moon' in string:
        dosomething
    

    你可以使用正则表达式:

    import re
    text = "odfsdlkfn dskfThe Moonaosjfsl dflkfn"
    if re.find("The Moon", text):
        ...
    

    在这种情况下,如果需要的话,你可以使用re(pattern, text, re.IGNORECASE)

    链接地址: http://www.djcxy.com/p/9391.html

    上一篇: How to find a string inside of a string space insensitive?

    下一篇: checking if a letter is present in a string in python