Find a number from a string and remove in jQuery

Find a number from a string and remove in JQuery
  1. var str="Sibeesh007"  
  2. str.replace(str.match(/(\d+)/g)[0], '').trim();  
  3.   
  4. Here str is my string. 
I hope it helps.