Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: split cells

by McDarren (Abbot)
on Feb 20, 2012 at 11:00 UTC ( [id://955043]=note: print w/replies, xml ) Need Help??


in reply to split cells

Is there any way to split the data in the cells using perl?
Yes.

  1. Open the worksheet using your favourite Excel processing module
  2. Read the data from each cell
  3. split on whitespace
  4. Write the data back into the worksheet

Cheers,
Darren

Replies are listed 'Best First'.
Re^2: split cells
by bimleshsharma (Beadle) on Feb 20, 2012 at 11:35 UTC
    Yes, follow up below:
    * import module to parse xls. (This will help to modify your same cell of same file)
    * Read that cell text.
    * Split that cell text into newline. (@line=split '\n',cellvalue)
    * Split that line into tabspace (@innerline=split '\t',$line(index)
    * Now write each index position value of @innerline into different cells.
    Hope this will help.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://955043]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-20 02:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found