Dear Monks,
I am using use Spreadsheet::XLSX. I am trying to capture character "Alt+Enter" in CSV file and trying to convert it to space
$mycell_value = $excel_sheet_cell -> {Val};
$mycell_value=~ s/\n+/ /gs;
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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.