As an example, I want to get the sub count for youtube music from socialblade. I was able to download the page with string rawWeb = webStream.DownloadString("https://socialblade.com/youtube/channel/UC-9-kyTW8ZkZNDHQJ6FgpwQ/realtime")
But I couldn't understand how to separate the text I want (Line:295<p id="rawCount" style="display: none;">98199073</p>
) from the rest of the code, and from there how to single out the number only
I got Regular expressions would be the best way to do this but I can't wrap my head around the format. Nothing seemed to work. If you can help, it would be greatly appreciated :)
*Using .NET 4.5.2