vb Code:
For Each m As System.Text.RegularExpressions.Match In re.Match(my string)
Dim cc As Integer = Integer.Parse(re.Groups(1).Value)
Dim chr As Char = AscW(cc)
(my string) = (my string).Remove(m.Index,m.Length).Insert(m.Index,chr)
Next
vb Code:
Dim download_list() As String
download_list = Split(listmain, "<##>")
For Each line As String In download_list
'if line is null, skip it
If line = vbNullString Then Exit For
'Dim info As New UserControl1()
Dim values() As String
values = Split(line, "<**>")
For Each m As System.Text.RegularExpressions.Match In re.Match(values)
Dim cc As Integer = Integer.Parse(re.Groups(1).Value)
Dim chr As Char = AscW(cc)
(values) = (my string).Remove(m.Index,m.Length).Insert(m.Index,chr)
Next
Dim str(3) As String
Dim itm As ListViewItem
str(0) = values(2)
str(1) = values(1)
str(2) = values(3)
itm = New ListViewItem(str)