This should be very easy and straight-forward, but I can't get this figured out....
I need to grab a number out of a text file that I have captured off the web. I've stripped out the newlines, returns, form feeds, and spaces. A sample of the data I'm sorting through: (need the red number)
I am using this as the pattern:
It is returning no matches! Is there something obvious that I'm missing here? I'd really appreciate any help anyone is able to offer....
Thanks!
I need to grab a number out of a text file that I have captured off the web. I've stripped out the newlines, returns, form feeds, and spaces. A sample of the data I'm sorting through: (need the red number)
Code:
...<strong>LotSize:</strong></font></td><td><fontsize="2">[COLOR=red]10,500[/color]Sq.Ft.</td>...
I am using this as the pattern:
Code:
strPattern = "LotSize:.{39}(\d+,*\.*\d+)"
It is returning no matches! Is there something obvious that I'm missing here? I'd really appreciate any help anyone is able to offer....
Thanks!