JavaScript implements Chinese symbol conversion English symbol

Source: Internet
Author: User


Because of the program design, many times we want the user to input something for the English symbol, we can give users a hint, but we do not guarantee that they will comply with, so the use of JS to convert Chinese symbols for English symbols became urgent need.

function Changedouhao (str) {
Str=str.replace (/,/ig, ', ');
return str;
}
This is an example of converting a comma, using a regular string substitution, which is equally

function Changewenhao (str) {
Str=str.replace (/? /ig, '? ');
return str;
}

So we are not afraid of users to enter the random

Just saw a post, is the translation of all English symbols into Chinese

<SCRIPT   language= "JavaScript" >  
  <!--  
  function& nbsp;  Meizz (str)   
  {  
      var   tmp& nbsp;  =   ';  
      for (var   i=0;i< str.length;i++)   
      {  
           tmp   +=   String.fromCharCode (str.charcodeat (i) +65248)   
     }  
      return   tmp   
 }  
  alert (meizz (' abcdefghijklmnopqrstuvwxyz1234567890 '));  
& nbsp Alert (Meizz (' ~ '!@#$%^&* () _+|-={}[]: ";<>?,./\\\"));  
 //-->  
  </script>
can you write a way to translate Chinese symbols into English symbols

Note: In addition to JS can be cast so we can also use such as PHP or java,asp.net can be converted to the

Related Article

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.