Python Regular Expression Matching: ## ##

前端 未结 7 864
后悔当初
后悔当初 2021-01-25 23:31

I\'m searching a file line by line for the occurrence of ##random_string##. It works except for the case of multiple #...

pattern=\'##(.*?)##\'
prog=re.compile(p         


        
7条回答
  •  再見小時候
    2021-01-25 23:56

    have you considered doing it non-regex way?

    >>> string='lala ####hey## there'
    >>> string.split("####")[1].split("#")[0]
    'hey'
    

提交回复
热议问题