Extract words as List of string

Hey @Paul_Andrei_Turcu,

You can extract the words with some separator and and using the below code you can convert that sentence or string to a list or array.

stringVar.Split(',').ToList();

Thanks,
Sanjit