Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are other options to reverse string in Haxe? I present mine (simple, clear and beginner like):

class ReverseString {

    public static function main() {

        neko.Lib.print("Enter some words: ");
        // Lets read some input!
        var someWord = Sys.stdin().readLine();

        // Split string to array, reverse string, and join again
        var stringArray:Array<String> = someWord.split("");
        stringArray.reverse();
        var reversedString = stringArray.join("");

        // And finally, enjoy the reversed string:
        neko.Lib.print("Reversed word looks like this: ");
        neko.Lib.println(reversedString);
    }
}
share|improve this question

1 Answer

You can move the code to a separate static function:

class StringUtil {
    static public function reverse(s:String):String {
        var a = s.split('');
        a.reverse();
        return a.join('');
    }
}

And then do this:

using StringUtil;

class ReverseString {

    public static function main() {

        neko.Lib.print("Enter some words: ");
        // Lets read some input!
        var someWord = Sys.stdin().readLine();

        // Just reverse it
        var reversedString = someWord.reverse();

        // And finally, enjoy the reversed string:
        neko.Lib.print("Reversed word looks like this: ");
        neko.Lib.println(reversedString);
    }
}

Makes the comment rather obsolete, doesn't it?

Alternatively you can iterate backwards over the chars of the String and add them to a StringBuf, but my guess is this is slower on most platforms.

share|improve this answer
Your solution is more elegant, so im buying it. ;) – wof Nov 10 '12 at 19:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.