Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Aceing the try except method solution in Clear category for Between Markers by AymaneLazarus
def between_markers(str, b, e):
"""
returns substring between two given markers
"""
n=len(str)
i=0
s=0
try :
i=str.index(b)+len(b)-1
except :
try :
s=str.index(e)
except :
return str
else:
return str[:s]
try :
s=str.index(e)
except:
return str[i+1:]
else:
if sapple<', '>', '<'))
# These "asserts" are used for self-checking and not for testing
assert between_markers('What is >apple<', '>', '<') == "apple", "One sym"
assert between_markers("My new site",
"", "") == "My new site", "HTML"
assert between_markers('No[/b] hi', '[b]', '[/b]') == 'No', 'No opened'
assert between_markers('No [b]hi', '[b]', '[/b]') == 'hi', 'No close'
assert between_markers('No hi', '[b]', '[/b]') == 'No hi', 'No markers at all'
assert between_markers('No ', '>', '<') == '', 'Wrong direction'
print('Wow, you are doing pretty good. Time to check it!')
April 30, 2020
Comments: