vote up 2 vote down star

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?

flag

2 Answers

vote up 3 vote down check

In this case the simplest answer is likely to just use the standard System.String.Split() function.

let split (value:System.String) = value.Split([|' '|])
link|flag
KISS principle !!! – ggf31416 Jan 17 '09 at 2:19
vote up 1 vote down
let breakstring x = 
   let regex = new System.Text.RegularExpressions.Regex("\\w*");
   let matches = regex.Matches(x)
   seq { let enum = matches.GetEnumerator()
         while enum.MoveNext() do
            let str = enum.Current.ToString()
            if str.Length > 0 then
                yield str }

This will work correctly for delimiters other than space.

link|flag
1  
If you're going to be ignoring blank strings anyway, you might as well use this: let breakstring x = Regex.Split(x, "\w+") – Juliet Jan 18 '09 at 5:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.