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
|
I'm trying to reverse an input string
but firebug is telling me that Thank you |
||||
|
|
|
|
|||||
|
Inspired by the first result I got when I did a Google for javascript string reverse. |
|||
|
|
|
|
|||
|
|
|
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:
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 :) |
|||||
|
|
|||
|
|
|
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):
And the same thing in Chrome 26:
And last (but also least), IE 10:
Looks like the winner is Brian Campbell with:
|
||||
|
|