Hello guys, how do we split a string of email address with ';' as delimiter and use it as a defaultselecteditems on my peoplepicker combobox. Please help me. Thank you

Hello guys, how do we split a string of email address with ';' as delimiter and use it as a defaultselecteditems on my peoplepicker combobox. Please help me. Thank you
Hi @nagestiada,
Do you have a string splitted by the semi colon and you want to populate the people picker with it?
| abc@xxx.com;def@xxx.com;fgh@xxx.com |
Does it look like as above?
If so, you just need to use the Split() to split it as a table to populate the Items property of the people picker:
Split(your_string,";")
EDIT: If you have a string wihout any space, you could try as below:
Concat(
MatchAll(
"abc@xxx.comdef@xxx.com",
"[\w.-]+?@[\w.-]+?\.(?:com|net)"
),
ThisRecord.FullMatch , ","
)