Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Between Markers by MKaa01
def between_markers(text: str, begin: str, end: str) -> str:
counter_begin=len(begin)
opens=text.find(begin)
close=text.find(end)
if close>opens and opens!=-1:
return text[opens+counter_begin:close]
if opens>close and close!=-1:
return ''
if close==-1 and opens!=-1:
return text[opens+counter_begin:]
if opens==-1 and close!=-1:
return text[:close]
if opens==-1 and close==-1:
return text
if __name__ == '__main__':
# 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!')
Jan. 18, 2018