B2016-090: support for multi-line Procedure Specific information data
This commit is contained in:
parent
55af3fdddb
commit
326e6fa732
@ -11,9 +11,9 @@ namespace Volian.Base.Library
|
||||
{
|
||||
{
|
||||
List<string> results = new List<string>();
|
||||
if (text.Contains("\\LINE ") || text.Contains("\r\n"))
|
||||
if (text.Contains("\\LINE ") || text.Contains("\r\n") || text.Contains("\\line "))
|
||||
{
|
||||
string[] mySplit = { "\\LINE ", "\r\n" };
|
||||
string[] mySplit = { "\\LINE ", "\r\n", "\\line " };
|
||||
return new List<string>(text.Split(mySplit, StringSplitOptions.None));
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user