List strings to separate lines

Like the string (“AAA”,“BBB”,“CCC”)as string
AAA,BBB,CCC

We want to list them to the next line like:
AAA
BBB
CCC

How could we do for the relevance?

q: (it as trimmed string) of substrings separated by "," of (("AAA","BBB","CCC")as string)
A: AAA
A: BBB
A: CCC
2 Likes