The following custom column template will do it:
Code:
{identifiers:list_re(\,,:.*, )}
Explanation:
list_re allows us to run a S&R on each element in a list (which we say is separated by a comma).
What we are searching for is "
:.*" and we replace it by an empty space.