public void BuilddlBusts(){ string SearchString = "A cobra is a venomous snake!"; string Pattern = "\\bve\\w*"; Match oMatch; oMatch = Regex.Match(SearchString, Pattern, RegexOptions.IgnoreCase); if (oMatch.Success) { MessageBox.Show(oMatch.Value); MessageBox.Show(oMatch.Index); MessageBox.Show(oMatch.Length); }}