Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to decrypt a string from numbers to characters in VB.NET

1 Answer

0 votes
Imports System
Imports System.Text

Public Class Program
    Private Shared Function convert_to_char_code(ByVal str As String) As Char
        Dim num As Integer = Integer.Parse(str)
		
        Return Convert.ToChar(num + 96)
    End Function

    Private Shared Function decrypt(ByVal s As String) As String
        Dim sb As StringBuilder = New StringBuilder()
        Dim i As Integer = 0

        While i < s.Length - 2
            Dim ch As Char

            If s(i + 2) = "#"c Then
                ch = convert_to_char_code(s.Substring(i, 2))
                i += 2
            Else
                ch = convert_to_char_code(s.Substring(i, 1))
            End If

            i += 1
            sb.Append(ch)
        End While

        Return sb.ToString()
    End Function

    Public Shared Sub Main(ByVal args As String())
        Console.Write(decrypt("10#1426#25#524#"))
    End Sub
End Class





' run:
'
' jadzyex
'

 



answered Jul 16, 2023 by avibootz

Related questions

1 answer 175 views
1 answer 67 views
1 answer 115 views
1 answer 117 views
1 answer 125 views
...