let's say i have this line string:
'''Sir Winston Leonard Spencer-Churchill''', {{Post-nominals|post-noms=[[Knight of the Garter|KG]]
i already got to use string split with no empty results in my code, but i want now the result for that string will be:
[0] "'''"
[1] "Sir Winston Leonard Spencer-Churchill"
[2] "'''"
[3] ", "
[4] "{{"
[5] "Post-nominals|post-noms="
[6] "[["
[7] "Knight of the Garter|KG"
[8] "]]"
and so on, so basicaly my delimeters are {"'''","{{","}}","[[","]]"}
just need the way for it, i'll edit that later. if it won't be with regex it'll be better.