Split String At Specific Positions Vb Net

[Solved] Split String At Specific Positions Vb Net | Scala - Code Explorer | yomemimo.com
Question : split string at specific positions vb.net

Answered by : chris-vl

var lengths = new[] { 4, 6, 4, 7, 9 };
var parts = new string[lengths.Length];
// if you're not using .NET4 or above then use ReadAllLines rather than ReadLines
foreach (string line in File.ReadLines("YourFile.txt"))
{ int startPos = 0; for (int i = 0; i < lengths.Length; i++) { parts[i] = line.Substring(startPos, lengths[i]); startPos += lengths[i]; } // do something with "parts" before moving on to the next line
}

Source : https://stackoverflow.com/questions/6185476/splitting-strings-at-specific-positions | Last Update : Wed, 22 Jun 22

Answers related to split string at specific positions vb net

Code Explorer Popular Question For Scala