4
I have a string that returns all the content of an html page.
On this page, you have the following line:
<input style="width: 2.3em;" id="nacional" value="3,48" type="text">
I need only the value that is in value
, that is to say, 3,48
, remembering that this value changes automatically every day.
How can I filter this line and get the value?
and how could I implement on this line? Matchcollection M1 = Regex.Matches()
– Vinix Gonzalez
This is just the Pattern, any doubt worth taking a look over Regex C#
– Gabriel Gonçalves