How Do I Parse Live Html From A Website And Extract Specific Information And Store It Into A Database With Visual Basic
The info i need extracted is formatted: 

Solution 1:
It seems like you're looking for information about scraping a website. There are a lot of tools that can help you with this, perhaps you could start here: web scraping using visual basic (blogs.msdn.com)
Solution 2:
If you'd like to do using PHP, here is a PHP inbuilt function.
You can use the following function and it will give you string between ===
<?php
preg_match_all("/===(.*)===/", $source, $matches);
?>
$source is your html and $matches will return you the array of possible strings.
Post a Comment for "How Do I Parse Live Html From A Website And Extract Specific Information And Store It Into A Database With Visual Basic"