How can i get all second word from a list string

i have a list = A:AEROPLANE,A:APPLE,A:AEROPLANE
i want the result from above string = AEROPLANE,APPLE,AEROPLANE

I am using this below method , but not getting the result as i need

GET_SECOND_VALUE.aia (1.9 KB)

blocks

You have to split text at : for each list items and then select second item which will give you the word you want.

i am new to this coding , please can you make a blocks design , how to set the blocks

Like this

1 Like

thank you very much , you solved my problem