sanPerl has asked for the wisdom of the Perl Monks concerning the following question:
where $excel_sheet_cell -> {Val} contains value in cell. This is still Not working. THe CSV file , if it is opened in Excel, it still shows Newlines in cell. Can someone kindly help. Update: I am using $mycell_value variable to output in CSV (and Not $excel_sheet_cell -> {Val}) I guess some monks have mis-understood the question. They have interpreted that I want to put Alt+Enter character in CSV. But the requirement is reverse. I already have an Excel file (as input) which contains a cell having Enter character. This character is entered by some user, using 'Alt+Enter' key combination. Now I want to convert this Enter character (or 'Alt+Enter' char) to space. This is what is Not happening and I am getting CSV file with Enter character (which is spoiling structure of CSV). Thank, SanPerl$mycell_value = $excel_sheet_cell -> {Val}; $mycell_value=~ s/\n+/ /gs;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Trying to capture Alt characer in Perl
by Corion (Patriarch) on May 19, 2014 at 08:19 UTC | |
|
Re: Trying to capture Alt characer in Perl
by Bloodnok (Vicar) on May 19, 2014 at 10:34 UTC | |
|
Re: Trying to capture Alt characer in Perl
by Anonymous Monk on May 19, 2014 at 08:16 UTC | |
by sanPerl (Friar) on May 20, 2014 at 19:57 UTC | |
|
Re: Trying to capture Alt characer in Perl
by hdb (Monsignor) on May 19, 2014 at 08:41 UTC | |
|
Re: Trying to capture Alt characer in Perl
by leuchuk (Novice) on May 20, 2014 at 13:51 UTC | |
by choroba (Cardinal) on May 20, 2014 at 14:37 UTC | |
by sanPerl (Friar) on May 20, 2014 at 19:36 UTC |