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

I'm trying to reverse an input string

var oneway = $('#inputfield').val();
var backway = oneway.reverse();

but firebug is telling me that oneway.reverse() is not a function. Any ideas?

Thank you

share|improve this question

6 Answers

up vote 43 down vote accepted

reverse() is a method of array instances. It won't directly work on a string. You should first split the characters of the string into an array, reverse the array and then join back into a string:

var backway = oneway.split("").reverse().join("");
share|improve this answer
Thank you Ates. – drummer Oct 23 '09 at 5:01
This is broken for strings that contain astral Unicode symbols, i.e. characters outside of the Basic Multilingual Plane. It will also give funny results for strings containing combining characters, e.g. a diaeresis might appear on the following character. The first issue will lead to ‘invalid’ strings (with the surrogate pairs for any astral symbols in the wrong order), the second to valid strings that look funny. – Mathias Bynens May 14 at 15:49
String.prototype.reverse = function () {
    return this.split("").reverse().join("");
}

Inspired by the first result I got when I did a Google for javascript string reverse.

share|improve this answer

reverse is a function on an array and that is a string. You could explode the string into an array and then reverse it and then combine it back together though.

var str     = '0123456789';
var rev_str = str.split('').reverse().join('');
share|improve this answer

I think you'll find that in fact reverse() isn't a function in jQuery. Incidentally, jQuery is really good at manipulating your DOM, but isn't really for string manipulation as such (although you can probably get plugins/write your own) to do this.

The best way I've found to reverse a string in javascript is to do the following:

String.prototype.reverse = function(){
splitext = this.split("");
revertext = splitext.reverse();
reversed = revertext.join("");
return reversed;
}

Found at: http://www.bytemycode.com/snippets/snippet/400/

I think you'll find that if you pop the above into your code somewhere, your call to .reverse() should work :)

share|improve this answer
1  
Easy on the variables, there. this.split("").reverse().join("") – Cerbrus Jan 23 at 10:23
//
You could reverse a string without creating an array

String.prototype.reverse= function(){
 var s= '', L= this.length;
 while(L){
  s+= this[--L];
 }
 return s;
}

var s1= 'the time has come, the walrus said, to speak of many things';
s1.reverse()
/*returned value: (String)
sgniht ynam fo kaeps ot, dias surlaw eht, emoc sah emit eht
*/
share|improve this answer

First of all: sorry for creating a new answer, i'm unable to comment on kennebecs answer since I dont have enough reputation.

I was wondering which of these methods is the best in speed, so i compared them by measuring the time it took to run 100,000 times of each method in a fiddle: http://jsfiddle.net/RienNeVaPlus/qyMne/1/

Here are my results for each method (created with firefox 20):

String method: 1414ms (by kennebec)
Array method: 222ms (by Brian Campbell)

And the same thing in Chrome 26:

String method: 396ms
Array method: 274ms

And last (but also least), IE 10:

String method: 536ms
Array method: 141ms

Looks like the winner is Brian Campbell with:

 String.prototype.reverse = function () {
     return this.split("").reverse().join("");
 }
share|improve this answer

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.