Way getting a FileList without a pathname and an extension name

Good day

blocks

Please tell me the way to get the result I want.


Thank you for your replies.
I got the result I wanted by using ‘replace all text’ 5 times like below.

Simply split each file path at / and select last item from list.

1 Like

Thanks so much.
So, show me the way how to split and select the last item. Please.

Like so:

1 Like

If you want to remove the file extension (e.g. “.jpg”), once you have the filename, use the text replacement block

1 Like

Simply split the path string into a List at the ‘/’ characters. The file name will be the last item in the List (Item 5).

1 Like