angularjs - Create HTML output to copy and paste into a 2 column Excel page -
i'm working on creating web page allow me paste in bunch of text in textarea , show me cleaned output of need. example, can have 5000+ lines this:
2015-08-11 15:45:44 info filecount:135 - identifier: 198743247, reg-category: 255, dailycount: 1 , durationcode: 112
the information need dailycount number , durationcode number. have written code extract information , store results in array looks this:
[{ "dailycount" : 1, "durationcode" : 112 }, { "dailycount" : 5, "durationcode" : 17 }, { "dailycount" : 2, "durationcode" : 6 }]
what i'm trying achieve display output in 2 column view can copy output page , paste in 2 column excel sheet. currently, pasting output in excel results in data going 1 column. tried selecting 2 columns , pasting data, excel complains clipboard not having same size , shape selected cells.
any appreciated. i'm using angular 1.4 repeat on array display output.
if going copy , paste other file, matter if copy webpage or downloaded file.
surely display excel file on webpage need additional libraries support or display information in html table , copy there.
Comments
Post a Comment