Chop / slice / divide a list in specific index

Hi there! I have this problem I need to separate these lists in a certain index that is given, but I can’t find the right node or package, is there any solution? in the image I have my data and the index of where I want to separate the list, and the result I’m looking for, thanks!

Hi @ra9841lu
I have a node in the :snowflake: Sastrugi package that does this.

3 Likes

List.Chop with a little work

ind1 = List.Flatten(List.AddItemToFront(0,List.Transpose([b,List.Count(a<1>)])<1>)<1>,-1);
ind2 = List.DropItems(List.Sublists(ind1<1>,0..1,1)<1>,-1);
chp1 = List.LastItem(ind2<1><2>) - List.FirstItem(ind2<1><2>);
chp2 = List.Chop(a<1>,chp1<1>);
5 Likes

Thanks but this does not work with my strings

1 Like

Thank you so much! this works perfect!

1 Like

Ah yes, duplicate values :+1:

Here is a python option.