Jump to content
YOUR-AD-HERE
HOSTING
TOOLS

Locked [Alternativa] StrREv


top10

Recommended Posts

[HIDE-THANKS][LENGUAJE=VB]Public Function StrRev_Alter(Palabra As String)

Dim k, i As Integer

Dim Res As String

Dim b() As Byte

b = StrConv(Palabra, vbFromUnicode)

For k = 0 To Len(Palabra) - 1

i = (Len(Palabra) - 1) - k

Res = Res + Chr(b(i))

Next k

StrRev_Alter = Res

End Function[/LENGUAJE][/HIDE-THANKS]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.