Use Regular expression to replace quotation mark - Javascript String Operation

Javascript examples for String Operation:String Replace

Description

Use Regular expression to replace quotation mark

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*from w w w .  jav  a  2 s .  co m*/
$('#x').append('\'hello"'.replace(/["']/g,''));
    });

      </script> 
   </head> 
   <body> 
      <p id="x"></p>  
   </body>
</html>

Related Tutorials