Task Overview: I am writing a Perl script to look through 'input.txt' and put this data into 'output.txt".
The input.txt file looks like this:
ID=10; Strike=233; etc...
I want my output.txt file to look like this (or similar):
10,233, etc...
I have my out put looking like this, the only...