Skip to content

Instantly share code, notes, and snippets.

@ecmelkytz
Created June 27, 2012 11:44
Show Gist options
  • Save ecmelkytz/3003539 to your computer and use it in GitHub Desktop.
Save ecmelkytz/3003539 to your computer and use it in GitHub Desktop.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim kelime, terskelime As String
kelime = TextBox1.Text
terskelime = ""
For i = 1 To kelime.Length
terskelime = terskelime & kelime.Substring(kelime.Length - i, 1)
Next
Label1.Text = terskelime
End Sub
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment