S
shapper
Hello,
How can I create a List of String from a CSV String?
For example, from:
"New York, London ,Lisbon ,Car,C# "
I would get a list with the following items:
"New York", "London", "Lisbon", "Car", "C#"
So I would take all words but ignore the spaces before and after a
comma but not the ones between words.
Should I make this with Regex?
Thanks,
Miguel
How can I create a List of String from a CSV String?
For example, from:
"New York, London ,Lisbon ,Car,C# "
I would get a list with the following items:
"New York", "London", "Lisbon", "Car", "C#"
So I would take all words but ignore the spaces before and after a
comma but not the ones between words.
Should I make this with Regex?
Thanks,
Miguel