I'm kinda struggling to fix the following case...
Imagine this string :
str = "three hundred + four - fifty six * eight"
Is there a way to get the following array :
array = ["three hundred", "+", "four", "-", "fifty six", "*", "eight"]
knowing that I have a list of multiple operators (used as delimiters in the string I guess) ?
spliting the string on the space delimiter is easy but I would like to keep every delimited part as one item of my list !
Also, is this possible without using any import like re for example?
Thanks in advance !