I tried to modify it to extract only the string between brackets only but anything else that do not have breackts appear as empty item in sublists. I would like to get the result below done with OOTB nodes or Designscript
import sys
import re
original_list = IN[0]
OUT = [[re.findall(r"\[([a-zA-Z0-9 ._]*)\]", i) for i in sublst] for sublst in original_list]

