Try the following:
var output = Regex.Replace(input, @"[\d-]", string.Empty);
The \d identifier simply matches any digit character.
Try the following:
var output = Regex.Replace(input, @"[\d-]", string.Empty);
The \d identifier simply matches any digit character.