vote up 0 vote down star

I'm trying to write a string processing function in F#, which looks like this:

let rec Process html =
  match html with
  | '-' :: '-' :: '>' :: tail -> ("→" |> List.of_seq) @ Process tail
  | head :: tail -> head :: Process tail
  | [] -> []

My pattern matching expression against several elements is a bit ugly (the whole '-' :: '-' :: '>' thing). Is there any way to make it better? Also, is what I'm doing efficient if I were to process large texts? Or is there another way?

Clarification: what I mean is, e.g., being able to write something like this:

match html with
| "-->" :: tail ->
flag

42% accept rate
Side note - I'd have used process rather than Process - too much risk of namespace collision or programmer confusion. See this question : stackoverflow.com/questions/526930/… – Benjol Feb 23 at 8:27
Thanks for the pointer - will keep this in mind. – Dmitri Nesteruk Feb 23 at 14:34

4 Answers

vote up 1 vote down check

I agree with others that using a list of characters for doing serious string manipulation is probably not ideal. However, if you'd like to continue to use this approach, one way to get something close to what you're asking for is to define an active pattern. For instance:

let rec (|Prefix|_|) s l =
  if s = "" then
    Some(Prefix l)
  else
    match l with
    | c::(Prefix (s.Substring(1)) xs) when c = s.[0] -> Some(Prefix xs)
    | _ -> None

Then you can use it like:

let rec Process html =  
  match html with  
  | Prefix "-->" tail -> ("→" |> List.of_seq) @ Process tail  
  | head :: tail -> head :: Process tail  
  | [] -> []
link|flag
Your snippets contain F# that I don't actually understand :) Back to the book for me, then! Thanks! – Dmitri Nesteruk Mar 26 at 9:37
vote up 1 vote down

I think you should avoid using list<char> and using strings and e.g. String.Replace, String.Contains, etc. System.String and System.StringBuilder will be much better for manipulating text than list<char>.

link|flag
vote up 1 vote down

For simple problems, using String and StringBuilder directly as Brian mentioned is probably the best way. For more complicated problems, you may want to check out some sophisticated parsing library like FParsec for F#.

link|flag
vote up 0 vote down

This question may be some help to give you ideas for another way of approaching your problem - using list<> to contain lines, but using String functions within each line.

link|flag

Your Answer

Get an OpenID
or

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