Replace last index of , with and in jQuery /JavaScript - Javascript String Operation

Javascript examples for String Operation:String Replace

Description

Replace last index of , with and in jQuery /JavaScript

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.8.3.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*from ww w . j  a  v  a 2  s  .c  om*/
var str = 'a,b,c', replacement = ' and ';
str = str.replace(/,([^,]*)$/,replacement+'$1');
console.log(str)
    });

      </script> 
   </head> 
   <body>  
   </body>
</html>

Related Tutorials