I have a csv file with 2 million rows of transaction and I convert it to text file.
Is there a way I can split the converted text file into 1 million transaction rows or an N value of transaction rows?
I have a csv file with 2 million rows of transaction and I convert it to text file.
Is there a way I can split the converted text file into 1 million transaction rows or an N value of transaction rows?
System.Text.RegularExpressions.Regex.Split(txt, environment.NewLine)transactionData will become the N value of transaction rows
Sorry, where is the splitting part?
I mean the converted text file has 2 million transaction rows and I want to split it into 2 or N files.
so if it is 2 splits, the expected output is 2 files with 1 million transaction rows each file.