[BangPypers] { exctract italic, bold }

2014-03-11 Thread Shashidhar Paragonda
Hello Python hackers I have a excel file which has some amount of data. The data in each row has some words which are italic and bolded. my requirement is I need to extract only italic or bold words from each row. any suggestions on the same, thank you in advance.

Re: [BangPypers] { exctract italic, bold }

2014-03-11 Thread shankha
I have used a package called xlutils to generate excel files. Never had the need to read back something. Check if it has API's for reading as well. I would be surprised if ti doesn't. Thanks Shankha Banerjee On Wed, Mar 12, 2014 at 10:29 AM, Shashidhar Paragonda shashidha...@gmail.com wrote:

Re: [BangPypers] { exctract italic, bold }

2014-03-11 Thread shankha
Will it work if you just search for a string instead of Italics or bold. That may be easier, if you have a fixed set of strings. If you are dealing with numbers it is much simpler. Thanks Shankha Banerjee On Wed, Mar 12, 2014 at 10:35 AM, shankha shankhabaner...@gmail.com wrote: I have used a

Re: [BangPypers] { exctract italic, bold }

2014-03-11 Thread Shashidhar Paragonda
hi Well the data in each row are the manual test case steps, each row will have different italised, bold words! this is main constaint. My main concerns is manual test cases are generated by us. We need to follow some standard were i need to extract keywords like: Login, logout, click on

Re: [BangPypers] { exctract italic, bold }

2014-03-11 Thread Shashidhar Paragonda
hi Well the data in each row are the manual test case steps, each row will have different italised, bold words! this is main constaint. My main concerns is manual test cases are generated by us. We need to follow some standard were i need to extract keywords like: Login, logout, click on

Re: [BangPypers] { exctract italic, bold }

2014-03-11 Thread Gora Mohanty
On 12 March 2014 10:29, Shashidhar Paragonda shashidha...@gmail.com wrote: Hello Python hackers I have a excel file which has some amount of data. The data in each row has some words which are italic and bolded. my requirement is I need to extract only italic or bold words from each row.