This tag repeats changing the content and would like to know if you can get each content separately
TextBox TXTTESTE = new TextBox();
TextBox TXTTESTEDOIS = new TextBox();
TextBox TXTTESTETRES = new TextBox();
ListBox LBTESTE = new ListBox();
MatchCollection TESTE = Regex.Matches(html, @"(<[^>]+>Alíquota<[^>]+><[^>]+>\d+\,\d+<[^>]+>)", RegexOptions.Multiline);
foreach (Match grupo in TESTE)
{
string strteste = grupo.Groups[0].Value;
string strdoisteste = grupo.Groups[1].Value;
string strtresteste = grupo.Groups[2].Value;
LBTESTE.Items.Add(strteste);
LBTESTE.Items.Add(strdoisteste);
LBTESTE.Items.Add(strtresteste);
}