I have this string:
a = "hy what are you doing [Zoho Reports] will you like? [Zoho Books] reply"
and I want to split it so the result is like this:
hy
what
are
you
doing
[Zoho Reports]
will
you
like?
[Zoho Books]
reply
How can I loop that string to achieve those results? I'm currently doing this:
a.split("")
but it splits up "[Zoho Reports]" into "[Zoho" and "Reports]", which I don't want.
