Have you looked into using the HubL filter `split`? And using a for loop? The one issue I see is you are not using a separator for your values. For that, I do not have a filter option. Here's a quick simple example assuming commas were used:
{% set topics = "Topic one,Topic two,Topic three,Topic four"|split(',') %}
{% for topic in topics %}
{{ topic }}<br/>
{% endfor %}
Hey, @Anton@Stephanie-OG, is there a better or different way you'd handle this type of challenge?