Javascript examples for String Operation:String Replace
Replace last index of , with and in jQuery /JavaScript
<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>