List operation take first character in every list item

Hi everyone,

Can someone help me to seperate the numbers marked in yellow into a new list?

String.Substring node.

1 Like

Or string.Split with a split character of ‘:(‘ which will give you the prefix number and the following decimals as a list. Add a List.Deconstruct with proper lacing and you should be all set.


Thanks for response. Got the split, but it changes the structure of the nested lists. Can you elaborate more on list.deconstruct?

Lacing is off… gets the first item, and passes the rest. Same as a list.transpose into a list.first and a list.drop.


This is the final product. I tried to get the pieces together in ps, therefore sorry for quality. But string.substring did the trick. Thank you very much!