Using regexp to replace file name alone - Javascript RegExp

Javascript examples for RegExp:RegExp test

Description

Using regexp to replace file name alone

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  w ww .  jav  a  2s .c o  m*/
var file = "Video/ogv/test.aaa.ogv.avi";
extension = file.match(/\.[^.]+$/);
filename = file.match(/(.*)\.[^.]+$/);
console.log('extention =  '+extension);
console.log('Filename = ' + filename[1])
    });

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

Related Tutorials