What is the best way to create a list from a string with values seperated by comma? If the lengths was always same I could use substring2. I can still use substring2 but it won't be a good code. Is there a better way to explode this string into a list ?
For example
s= "USD,TR,MOON"
I want to add all these words into a list
CSV - comma separated values format. The various StringUtils libraries include methods for loading and saving CSV files. However these methods have a few drawbacks: - They work with files instead of strings. This is especially problematic if the input is not UTF8 encoded. - As they are...