I have this string:
x = "G5.jpg']"
and I wish to split it at the symbol ' so that then I have G5.jpg and ] seperately in a list. Anyone has an idea how to do this? I have tried this:
name = x.split["'"]
but it doesnt split the string. I appreciate any help :)