Can "Format" component call list items by index?

Hi, this is a question that arose from another question:

When we use format we write {0} in order to call input 0. But if 0 is a tree, can we call individual items by index?
In the image below, I tried to call indexes 0,1 and 2 so as to create three distinct points (each corresponding to one of the three lists).
Of course, the component recognized the parentheses as text instead of an argument but is there a specific notation so as to call items?
(I hope that made sense)

input.gh (5.7 KB)

  1. There isn’t, it’s based on a .NET method for building strings.
  2. The inputs have item access, so the component will be executed once for each input. If they had other accesses, it would give more disadvantages than advantages. In addition, the original .NET method works with individual objects.
  3. You can do the same in another way (and I’m sure you can think of several ways), why complicate this component?
  4. Anyway, I guess you just wanted to take the doubt away.

EDIT:
Syntax: { index [ , alignment ][ : formatString ] }
[optional]
https://docs.microsoft.com/es-es/dotnet/standard/base-types/composite-formatting

exactly, sometimes you find shortcuts that can reduce the amount of components needed for an operation.
Thanks Dani!