I have an HTML string that has the following form:
<tr valign="top"><td colspan="2" style="padding-bottom:5px;text-align: left"><label for="base_1001013" style="margin-bottom: 3px; float: left">Nom d'utilisateur: </label><span style="float: right;"><input class="PersonalDetailsClass" type="text" name="base_1001013" id="base_1001013" value="" /></span></td></tr>
(sorry for the formatting..)
Anyhow I need to get the value which is not in a tag. i.e.- Nom d'utilisateur (without the " ", but that's neglectable).
The number of tags and their values may vary, also - the number of words in the requested string and even their language may also vary.
I'm not sure if that's a regex question, an XML question, or a c# string manipulation functions question (don't have specific preferences) .. But I do prefer not using a third-party dll (as I saw is sometimes used to parse HTML in c#).
How do I get the value?
Thanks.