import re
list_strings = ['[ABC1: text1]', '[[DC: this is a text]]', '[ABC-O: potatoes]', '[[C-DF: hello]]']
#remove from [ up to :
for string in list_strings:
cleaned = re.sub(r'^\[+[A-Z\d-]+:\s*(.*?)\s*]+$', r'\1', string)
print(cleaned)
aW1wb3J0IHJlCmxpc3Rfc3RyaW5ncyA9IFsnW0FCQzE6IHRleHQxXScsICdbW0RDOiB0aGlzIGlzIGEgdGV4dF1dJywgJ1tBQkMtTzogcG90YXRvZXNdJywgJ1tbQy1ERjogaGVsbG9dXSddCgojcmVtb3ZlIGZyb20gWyB1cCB0byA6IApmb3Igc3RyaW5nIGluIGxpc3Rfc3RyaW5nczoKICBjbGVhbmVkID0gcmUuc3ViKHInXlxbK1tBLVpcZC1dKzpccyooLio/KVxzKl0rJCcsIHInXDEnLCBzdHJpbmcpCiAgcHJpbnQoY2xlYW5lZCk=