Extract words as List of string

Hi @Paul_Andrei_Turcu

Can you share the sample input text with us

Use environment.newline split the string.

Try below code
arrvalue=strValue.Split(Environment.NewLine.ToArray, StringSplitOptions.RemoveEmptyEntries)

Regards
Gokul