If I have an f# function that takes a string containing a sentence, what is the best way to break that string up into a list of strings, one string for each word?
|
|
|
|
|
|
|
In this case the simplest answer is likely to just use the standard System.String.Split() function.
|
||
|
|
|
This will work correctly for delimiters other than space. |
||||
|
