Du kannst den Namespace System.Text.RegularExpressions benutzen. Erstelle ein neues Regex Objekt.
Regex regex = new Regex(@"\d+");
Um ein Vorkommen zu finden.
string input = "123";
Match match = regex.Match(input);
if (match.Success)
{
Console.WriteLine("Match found: " + match.Value);
}
Mehrere Vorkommen finden.
string input = "123 456 789";
MatchCollection matches = regex.Matches(input);
foreach (Match m in matches)
{
Console.WriteLine("Match found: " + m.Value);
}
Vorkommen ersetzen.
string input = "Hello 123 World";
string pattern = @"\d+";
string replacement = "###";
string result = Regex.Replace(input, pattern, replacement);