[ create a new paste ] login | about

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

slevy1ster - Perl, pasted on Jan 22:
1
2
3
my $str = "'11,12,13\n,14,15,16\n17,18,19'";
$str =~ s/[',]//g;  # replace '' with ""
print $str;


Output:
1
2
3
111213
141516
171819


Create a new paste based on this one


Comments: