I have a text file containing 10000s records. records are deliminated with comma ','. I read all the data into a string and i need to split the string at every 1000th comma.
Example:- If i had 10000 records then the splitted string array will have 10 records.
Is there any built in function to split at specific location by a character?
Thank You.