I am trying to create a naming structure to use with the Ifc COBie output. I have three separate lists with different list levels. I would like to end up with the following format
List1_List2_List3
I have tried list concat and list join. Neither has given the results I am hoping to get.
Hello @CahitO80
Iām not a very professional with dynamo but please find attached this solution hope this works with you and I have understood too.
I combined lists with separator ā_ā by code block.
Use a code block for individual concatenation (rather than whole lists). This is the same as using the +
node but with one iteration instead of two.
list1 + "_" + list2 + "_" + list3;
3 Likes