Tag Archive | "String"

How To: Reverse Any Given String Using AS3

How To: Reverse Any Given String Using AS3

Reversing a string is not something you might implement on a daily basis, however, having a handy way of doing so is always a great go to option. Here is a function that allows you to input a string of any length and it will then be outputted being reversed. This is definitely one function to add to your Flash utilities.

Enjoy!

Reverse Any Given String

function reverseString(tString:String):String {
var tmp_array:Array=tString.split("");
tmp_array.reverse();
var tmpString:String=tmp_array.join("");
return tmpString;
}

Source Demonstration

Get Adobe Flash player

Download source

Posted in SnippetsComments (3)

Page 1 of 11