1234567891011121314
#!/usr/bin/perluse warnings;use strict;my @array = ",Wort1 ,Wort2 ,Wort3 ,Wort4";map { s%^,%%g;} @array;print @array;1;