vote up 0 vote down star

I want to validate below data using regex and python.
Below is the dump of the data which Can be stored in string variable

Start 0  .......... group=..... name=...... number=.... end=(digits)
Start 1  .......... group=..... name=...... number=.... end=(digits)
Start 2  .......... group=..... name=...... number=.... end=(digits)
Start 3  .......... group=..... name=...... number=.... end=(digits)

Where ......is some random data need not to validate
...
..

Start 100  .......... group=..... name=...... number=.... end=(digits)

Thanks in advance

flag
What code have you written so far? This is not a "Please write my program for me.com" web site. What Specific question do you have? What regex did you try? What went wrong? What error did you get? – S.Lott Nov 6 at 12:00

2 Answers

vote up 1 vote down check

You could use r'(Start \d+.*?group=.*?name=.*?number=.*?end=\d+)*'.

link|flag
thanks for info – kingkongbs9 Nov 6 at 7:13
vote up -1 vote down

Thanks Alex

But I am new to python.

Will please provide little bit more

Thanks in advance,

link|flag
You should add a comment to Alex's answer, not post a new answer. – Laurence Gonsalves Nov 6 at 5:42
-1: This it not an answer. This is a comment. Delete this. – S.Lott Nov 6 at 11:59

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.