How to make this type string to list?

i use supertinydb Received data in this format :backhand_index_pointing_down:t4:

|name1|name2|name3|name4|name5

I Remove first Tex ( | ) and replace all ( | ) to ( , ) then i recieved the csv row text like this ( Name1,Name,Name3,Name4,Name5 ) but I can not use this like select list item with index

How to make this string to list ?

Name1,Name,Name3,Name4,Name5

Hi Kabir,

Use split text at “,”

1 Like

100%

Op 2

1 Like

Bro i use supertinydb i update my post please read it again this is Name tage values name1,name2,name3

Use split text at "," :grinning_face_with_smiling_eyes:

or directly to
Name1|Name2|Name3|Name4|Name5

split text at "|"

Please give salutation bro

First I try select list value from tage and index but not work

How to use it directly with supertinydb extension only get entirevalues

Sure, I’ll help you,
but the solution is this :grin:
I don’t know how to explain it better.
By splitting the text, to the left of the split block you get a list of items.
I’m away from the PC for a moment, as soon as I get back I’ll give you an example with the blocks.

Ok bro i am waiting


Seeing the blocks like this do you understand better?

1 Like

Also can try list from csv row data block

I use it not work

It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.

To get an image of your blocks, right click in the Blocks Editor and select “Download Blocks as Image”. You might want to use an image editor to crop etc. if required. Then post it here in the community.

Taifun

Ok send it

sent it to where?
what about adding your screenshots into this thread?

Taifun

Problem solved

This problem solved but if I want index number 5 then give item 4

listtest (2).aia (11.4 KB)

Probably because the first item is an empty string? To fix this you could add 1 to the index

Taifun

1 Like