Is there a way to use regex expression comparison using dust template.
eg:
@select key="{notes}"}
{@eq value="s+"}
sample: {notes}
{/eq}
{@default}
{notes}
{/default}
{/select}
I want any notes with 's' as the beginning, to be printed as "sample: {notes} " else it will directly print the {notes}.
Is it possible to do so with using any external helper?