System.Text.RegularExpressions.RegEx.IsMatch(myvalue, "into #(\w*?)( |$)", System.Text.RegularExpressions.RegexOptions.IgnoreCase Or System.Text.RegularExpressions.RegexOptions.Multiline)The actual recular expression would be this:
into #(\w*?)( |$)
Make sure you use RegexOptions values so that the "into" will match "INTO" and so that the $ will match the end of a line.