<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
hi, <BR>
&nbsp;<BR>
i have a set of data and using re to extract it into array. however i only get positive value, how to extract the whole value including the -ve sign? <BR>
For eg: <BR>
&nbsp;<BR>
Platform: PC<BR>Tempt&nbsp;: 25<BR>TAP0&nbsp;:0<BR>TAP1&nbsp;:1<BR>
+++++++++++++++++++++++++++++++++++++++++++++<BR>Port&nbsp;Chnl&nbsp;Lane&nbsp;EyVt&nbsp;EyHt<BR>+++++++++++++++++++++++++++++++++++++++++++++<BR>0&nbsp; 1&nbsp; 1&nbsp; 75 &nbsp;55<BR>0&nbsp; 1&nbsp; 2&nbsp; 10&nbsp;35<BR>0&nbsp; 1&nbsp; 3&nbsp; 25&nbsp;35&nbsp;<BR>0&nbsp; 1&nbsp; 4&nbsp; 35&nbsp;25<BR>0&nbsp; 1&nbsp; 5&nbsp; 10&nbsp;-1<BR>+++++++++++++++++++++++++++++++++++++++++++++<BR>Time: 20s<BR>
&nbsp;<BR>
When i run my code, i get 1 instead of -1 in the last line. here is my code. pls advise. i'm using Python 2.5 and Win XP. tq<BR>
##code###<BR>
import re<BR>
file = open("C:/Python25/myscript/plot/sampledata.txt", "r")<BR>
x1 = []<BR>y1 = []<BR>y2 = []<BR>for line in file:<BR>&nbsp;&nbsp;&nbsp; numbers = re.findall("\d+", line)<BR>&nbsp;&nbsp;&nbsp; print numbers<BR>                                               </body>
</html>