in reply to Re^5: Text to CSV with user input comma
in thread Text to CSV with user input comma
input looks like 50;; C,nt ;; ;;8;; 1;; ds;; 1;; a;; 1;; 0;; 0;; ;; ;; ;; output looks like " 50"," C ,nt "," ",8," 1","ds","1"," Va"," 1"," 0"," 0"," "," "," " and I just want these " " to get omitted
push @rows, [ split m{ ;; }msx, $line ]; I have done this in the code
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Text to CSV with user input comma
by hdb (Monsignor) on Jun 28, 2013 at 08:56 UTC |