Hi all,<br>
<br>
line is am trying to match is<br>
1959400|Q2BYK3|Q2BYK3_9GAMM Hypothetical outer membra    29.9    0.00011   1<br>
<br>
regex i have written is <br>
re.compile(r'(\d+?)\|((P|O|Q)\w{5})\|\w{3,6}\_\w{3,5}\s+?.{25}\s{3}(\d+?\.\d)\s+?(\d\.\d+?)')<br>
<br>
I am trying to extract 0.0011 value from the above line. <br>
why doesnt it match the group(4) item of the match ? <br>
<br>
any idea whats wrong  with it ? <br>
<br>
regards,<br>
KM<br>