I am using the following code to retrieve the shipping cost from amazon.com via scanning the html source of any product's page. But the output is not what i want. Below it the code.
regexString = "<span class=\"plusShippingText\">(.*)</span>";
match = Regex.Match(htmlSource, regexString);
string shipCost = match.Groups[1].Value;
MessageBox.Show(shipCost);
It show an message box that show the return shipping cost as
+ Free Shipping</span>
But actually I need the following clean text only.
Free Shipping
Please help me to solve this problem.