Exception and search text between 2 strings

PHOTO EMBED

Tue Jun 29 2021 16:20:27 GMT+0000 (Coordinated Universal Time)

Saved by @Quinn #py #dataframe #pandas #text #exception

import re

text = 'this is a text'

try:
    found = re.search('is(.+?)text', text).group(1)
except AttributeError:
    # AAA, ZZZ not found in the original string
    found = '0 wtitle' # apply your error handling
found

=> a
content_copyCOPY