split a string into an array of strings in C code example
Example 1: split string and create array bash
IFS=', ' read -r -a array <<< "$string"
Example 2: perl split array into smaller arrays
my @array = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
my $numberofarrays = 10;
my @splitArray;
while (@array) {
foreach (0..$numberofarrays-1){
if (@array) {
push @{$splitArray[$_]}, shift @arrays;
}
}
}