How to remove numbers from a string

I’m trying to replace numbers in a person’s name, but cannot seem to get the syntax correct. Can someone help? Below is what I thought would work.

 
var name:String = "BabeRuth27";
var regEx:RegExp = new RegExp("/[0-9]/"); 
var noNumbersName:String = name.replace(regEx, "");