How should I write a regular expression if I want to get a paragraph start from ABC, follow by anything includes newline, space, tab, any characters and end with DEF?
I try to do it as follow but it match nothing.
System.Text.RegularExpressions.Regex.Match(input, "ABC[\s\w\d]*DEF").Groups(0).ToString
thanks a lot.
I try to do it as follow but it match nothing.
System.Text.RegularExpressions.Regex.Match(input, "ABC[\s\w\d]*DEF").Groups(0).ToString
thanks a lot.