I need to use Regex.Replace to remove all numbers and signs from a string.
Regex.Replace
Example input: 123- abcd33 Example output: abcd
123- abcd33
abcd
Blow codes could help you...
Fetch Numbers:
return string.Concat(input.Where(char.IsNumber));
Fetch Letters:
return string.Concat(input.Where(char.IsLetter));