[ create a new paste ] login | about

Link: http://codepad.org/cAXlWiaP    [ raw code | output | fork ]

slevy1ster - Perl, pasted on Jan 22:
1
2
3
my $str = "1,2,3\n,4,5,6\n7,8,9";
$str =~ s/,//g;
print $str;


Output:
1
2
3
123
456
789


Create a new paste based on this one


Comments: