using System;using System.Text.RegularExpressions;Regex regex = new Regex(@"\d+");Match match = regex.Match("ABC 123 def");if (match.Success){ lbl_mesaage.Text = match.Value;}
Login to post response