....
Dim rx As RegexBuilder
rx.Initialize.AppendEscaped($"pficon-imageclick"$).Append(rx.CharAny).AppendAtLeastOne.AppendEscaped($"style="cursor:pointer">"$)
Dim mat As Matcher = Regex.Matcher(rx.Pattern, res)
Dim i As Int = 0
Do While mat.Find
Dim foto As String = mat.match
foto = foto.Replace($"pficon-imageclick" data-pf-link=""$,"")
foto = foto.Replace($"" style="cursor:pointer">"$,"")
Starter.mappa.Put("foto" & i, foto)
Log(foto)
i = i + 1
Loop
totale_record_trovati = Starter.mappa.Size
Dim rx1 As RegexBuilder
rx1.Initialize.AppendEscaped($"pflist-itemtitle"$).Append(rx1.CharAny).AppendAtLeastOne.AppendEscaped($"</a></li>"$)
Dim mat1 As Matcher = Regex.Matcher(rx1.Pattern, res)
Dim i As Int = 0
Do While mat1.Find
Dim nome As String = mat1.match
nome = nome.Replace($"pflist-itemtitle">"$,"")
Dim preleva_link_da_cancellare As String
Dim lunghezza As Int
lunghezza = nome.LastIndexOf($"">"$)
preleva_link_da_cancellare = nome.SubString2(0, lunghezza)
nome = nome.Replace(preleva_link_da_cancellare, "")
nome = nome.Replace($"">"$,"")
nome = nome.Replace($"</a></li>"$,"")
nome = HtmlDecoder(nome)
Starter.mappa.Put("nome" & i, nome)
Log(nome)
i = i + 1
Loop
...