asked on
ASKER
ASKER
ASKER
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
The only reason that this is not working for you is that the LINE BREAKS in the string are not \r\n as in DOS standard but \n as in Unicode standard.
Try setting the pattern to "\b\n" and see if that works for you.
Fernando