Python + Regex: AttributeError: 'NoneType' object has no attribute 'groups'

后端 未结 2 1032
傲寒
傲寒 2020-11-30 06:57

I have a string which I want to extract a subset of. This is part of a larger Python script.

This is the string:

import re

htmlString = \'         


        
2条回答
  •  借酒劲吻你
    2020-11-30 07:26

    You are getting AttributeError because you're calling groups on None, which hasn't any methods.

    regex.search returning None means the regex couldn't find anything matching the pattern from supplied string.

    when using regex, it is nice to check whether a match has been made:

    Result = re.search(SearchStr, htmlString)
    
    if Result:
        print Result.groups()
    

提交回复
热议问题