Re: [Chennaipy] Re module in python

2021-07-06 Thread Rengaraj D
On Tue, 6 Jul 2021 at 17:22, Nithya Duraisamy wrote: > Hi Vijay, > > Now its coming as [['6245'], ['3985'], ['4085']] > Above one is a nested list. But expected is ['6245', '3985', '4085'] > Create an empty list loop through the nested list append to the empty list Regards Rengaraj _

Re: [Chennaipy] Re module in python

2021-07-06 Thread Nithya Duraisamy
This is also done vijay by changing the code as below method_uri_protocol.append((m.group(1), m.group(2))). Thanks a lot. The issues are solved now. Regards, Nithya. செவ்., 6 ஜூலை, 2021, பிற்பகல் 5:35 அன்று, Nithya Duraisamy எழுதியது: > > Hi Vijay, > > Changed the code as below. Now its coming

Re: [Chennaipy] Re module in python

2021-07-06 Thread Nithya Duraisamy
Hi Vijay, Changed the code as below. Now its coming like expected ['6245', '3985', '4085'] l2= [] for i in range(0, len(txt)): s=txt[i] l2 += re.findall("\d+$", s) print(l2) Now please help me on the remaining one thing. [['GET', '/history/apollo/ HTTP/1.0'], ['GET'

Re: [Chennaipy] Re module in python

2021-07-06 Thread Nithya Duraisamy
Hi Vijay, Now its coming as [['6245'], ['3985'], ['4085']] But expected is ['6245', '3985', '4085'] Likewise [['GET', '/history/apollo/ HTTP/1.0'], ['GET', '/shuttle/countdown/ HTTP/1.0'].['GET', '/images/NASA-logosmall.gif HTTP/1.0']] should be coming as [('GET', '/history/apollo/ HTTP/1.0

Re: [Chennaipy] Re module in python

2021-07-06 Thread Vijay Kumar B
On Tue, 06 Jul 2021 16:25:55 +0530 Nithya Duraisamy wrote > Hi All, > Can anyone of your please help me to fix my code using re module? Hope this code, produces the required output. import os import re txt = [ '199.72.81.55 - - [01/Jul/1995:00:00:01 -0400] "GET /history/apollo