Extract list items in a string separated by commas
First Item
replace(prop("Name"), "[,].*", "")
Items Between First and Last
Change the number inside the curly brackets {…} to specify item. For example,
1
will extract the 2nd item, 2
will extract the 3rd item, etc.replaceAll(replace(prop("Name"), "(?:[^,]*, ){1}", ""), ",.*", "")
Last Item
replace(prop("Name"), ".*[,] ", "")