Judge whether a word is a palindrome

Source: Internet
Author: User

Palindrome refers to the same words or sentences, in the following exchange position or upside down, producing the end-to-end loop of interest, called a palindrome, also known as the loopback. Like Mamam Redivider.

To determine whether it is a palindrome, it can be converted to an array by the split () method, then reversed by the reverse () method, and finally converted back to the string by the join () method.

<inputtype= "text"ID= "text"placeholder= "Please enter ..."onkeyup= "Test ()"/><DivID= "Output"></Div>
functionTest () {varStr= $('#text'). Val (); STR=Str.split ("'). Reverse (). Join ("'); if($('#text'). Val ()==str) { $('#output'). HTML ('It's a palindrome .'); }Else{ $('#output'). HTML ('not a palindrome .'); }};

Final effect:

Judge whether a word is a palindrome

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.