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. |
|||
|
|
|
The following technique (or similar) is commonly used to reverse a string in JavaScript:
In fact, all the answers posted so far are a variation of this pattern. However, there are some problems with this solution. For example:
If you’re wondering why this happens, read up on JavaScript’s internal character encoding. (TL;DR: But there’s more:
A good string to test string reverse implementations is the following:
Why? Because it contains an astral symbol ( The order in which surrogate pairs appear cannot be reversed, else the astral symbol won’t show up anymore in the ‘reversed’ string. That’s why you saw those Combining marks always get applied to the previous symbol, so you have to treat both the main symbol (U+006E LATIN SMALL LETTER N) as the combining mark (U+0303 COMBINING TILDE) as a whole. Reversing their order will cause the combining mark to be paired with another symbol in the string. That’s why the example output had Hopefully, this explains why all the answers posted so far are wrong. To answer your initial question — how to [properly] reverse a string in JavaScript —, I’ve written a small JavaScript library that is capable of Unicode-aware string reversal. It doesn’t have any of the issues I just mentioned. The library is called Esrever; its code is on GitHub, and it works in pretty much any JavaScript environment. It comes with a shell utility/binary, so you can easily reverse strings from your terminal if you want.
|
||||
|
|
|
|
|||
|
|
|
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:
|
||||
|
|
|
Google harder, bros. This is by Edd Mann.
http://eddmann.com/posts/ten-ways-to-reverse-a-string-in-javascript/ |
|||||
|