How can I read a TXT file in this format to insert into an episode table? The structure is this:
temporada{
numero_episodio - nome_do_episodio
}
A practical example:
1{
1 - Episódio número 1 na 1ª Temporada
2 - Episódio número 2 na 1ª Temporada
...
}
2{
1 - Episódio número 1 na 2ª Temporada
2 - Episódio número 2 na 2ª Temporada
...
}
How to traverse, read, and separate these lines so that an array remains in the following format: episodios[temporada][episodio][nome_do_episodio]
, is it possible? Is there any easier way to organize this TXT?