Remove all alphabets and special characters from entire column of a datatable

Hi,

Can anyone please provide a code to remove all the alphabets and special characters from a column in a data table without using for each?

image

Thanks,
Amrutha

give a try at regex replace

myNewString = System.Text.RegularExpressions.Regex.Replace("strOldVar","[^\d\s]", "")