Since the default point does not match NewLine, you can simply use
.*NIC.*
to find strings containing "NIC". You would use this expression, for example
string result = Regex.Replace(originalString, ".*NIC.*", "replacement string");
You can see it at ideone.com .
source share