Skip to content
Advertisement

Tag: python-regex

Extract subtring using regex python

Hello I have this string and I need extract from this some sub strings according some delimiters: And I need extract exactly this strings: I have tried a lot of types: re.findall, re.search, re.match. But I never geted the result expected. For eg: this code bellow print all string: Answer You do not need a regex for this, you may

Advertisement