I was reading on how to use tables and I noticed that there is a table.concat command that strings together table values. Is there anything that does the reverse as in change:
the,quick,brown,fox,jumped
into:
t =
{
"the",
"quick",
"brown",
"fox",
"jumped",
}
the,quick,brown,fox,jumped
into:
t =
{
"the",
"quick",
"brown",
"fox",
"jumped",
}