how can i convert a reverse text file to be read normally

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lippss
    New Member
    • Dec 2010
    • 1

    how can i convert a reverse text file to be read normally

    like a situation like this one

    Array.Reverse(c harArray);

    i want to change the word "Reverse" to another word so i be able to read the text.
    Am very new to Programming langauge
  • GaryTexmo
    Recognized Expert Top Contributor
    • Jul 2009
    • 1501

    #2
    I... don't think I understand. You've got data that's reversed, and you want to re-reverse it? You should just be able to use that reverse it again.

    If you have "ABCD" and you reverse it, you'd end up with "DCBA". Reverse it again and you get "ABCD" back.

    Comment

    Working...