With the following code, is there a way to do this more neatly instead of using multiple replace statements?
{{$a := delimit .Params.products ", "}}
{{$a := replace $a "A, " ""}}
{{$a := replace $a "B, " ""}}
{{$a := replace $a ", C" ""}}
{{$a := replace $a "D, " ""}}
{{$a := split $a ","}}
I’ve tried doing the following which works but does not do what I need since it omits the ,
.
{{$a := delimit .Params.products ", "}}
{{$b := "A, B, C, D"}}
{{$a := replace $a $b ""}}
{{$a := split $a ","}}
If I do something like this I get the error: can't give argument to non-function "A"
{{$a := delimit .Params.products ", "}}
{{$b := "A, " "B, " ", C" "D, "}}
{{$a := replace $a $b ""}}
{{$a := split $a ","}}