Implode not working with special characters or spaces

The example [@3 TableName] generates:

Item1Item2Item3

[@3 TableName >> Implode] correctly generates:

Item1, Item2, Item3

[@3 TableName >> Implode .] generates:

Item1.Item2.Item3

But If I want to add a space as well [@3 TableName >> Implode . ] still generates:

Item1.Item2.Item3 and not Item1. Item2. Item3 as expected

Similarly [@3 TableName >> Implode .\_] does not work (the \_ is ignored)

The help gives the example [@3 TableName >> Implode \_\_\_\_] but it does not work (again it is ignored and commas are used instead)

Help. Is this a bug or am I doing something wrong?

Comments

Leave a Comment