I am working on scraping a betting website for odds as my first web-scraping project. I have successfully scraped what I want so far and now have an array like this
[<b>+5\xbd\xa0-110</b>, <b>-5\xbd\xa0-110</b>]
[<b>+6\xa0-115</b>, <b>-6\xa0-105</b>]
[<b>+6\xa0-115</b>, <b>-6\xa0-105</b>]
Is there a way I can just pull out the -105/110/115? The numbers I am looking for are those 3 to the left of the </b>
and I also need to include the positive or negative sign to the left of the three numbers. Do I need to use a regular expression?
Thanks a lot!
Weston