I\'m trying to remove any currency symbol from a string value.
using System; using System.Windows.Forms; using System.Text.RegularExpressions; namespace Win
The answer from Andrew Hare is almost correct, you can always match digit using \d.*, it will match any digit to your text in question.