in reply to Using variable in substitute regex producing odd results

You need to quote your string with \Q\E because it contains | which in a regex means or. What you want is:

$line =~ s/\Q$delimiter\E/\,/g;

Note that your original code acted as a "match anything" so it interspersed a comma between each character in the target string.


Perl is Huffman encoded by design.