How to split line by line in C # .net 1.1.4322?
Example line:
Key|Value|||Key|Value|||Key|Value|||Key|Value
necessary:
Key|Value
Key|Value
Key|Value
An example of a decision:
using System.Text.RegularExpressions;
String[] values = Regex.Split(stringToSplit,"\\|\\|\\|");
source
share