using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"(?:(?:MBVCB|IBVCB)\.(?:[A-Za-z0-9]{1,})\.(?:[A-Za-z0-9].{1,}| )?|(?:[A-Za-z0-9]{1,})\.(?:[A-Za-z0-9]{1,})\.(?:[A-Za-z0-9].{1,})\.(?:[A-Za-z0-9].{1,}| )?|(?:SHGD)\:(?:[A-Za-z0-9].{5,})\.REMARK\:(?:[a-zA-z0-9].{1,};|#)?|(?:##SAL(?:[a-zA-Z0-9]{5,})##BAO#CO#BO#SUNG#GD#TRACE#(?:\d+)#NGAY#(?:\d+)#NOI#DUNG#GD#GOC:(?:[a-zA-Z0-9].{1,}#|#)?))(TIK)([A-Za-z0-9]{5,})(#|-|\.|;|,|\)|)";
string input = @"SHGD:10002370.DD:240301.BO:BUI#NGOC#LE.REMARK:#TIK127465376";
Match m = Regex.Match(input, pattern);
Console.WriteLine("'{0}' found at index {1}", m.Value, m.Index);
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx