Add string to the front of each item in a list

Hi everyone,

I am trying to do something that I thought was quite simple but apparently not for me.

I have a list of level names (That is subject to fluctuate per project) and I would like to add a word to the beginning of each level name.
For Example:
Schedule name = Door Schedule
Level names = [level 1, level 2, level 3, level 4]
I would like this to read:
[Door schedule - level 1, Door schedule - level 2, Door schedule - level 3, Door schedule - level 4]

Does anyone know how I can achieve this?

Hi,
try with this:

2 Likes

Hi @Sigma,

Or this :wink:


Combine Strings.dyn (8.7 KB)

1 Like

Thank you Giuseppe, it was the lacing that was getting me, I have to set the last “+” node to longest, because I want to provide the code block with inputs, not static items.

But it worked so thank you!

Thank you MJB, worked as well :slight_smile: