vote up 0 vote down star

I'm trying to write some code to remove the first N characters in a string. I could have done this in an imperative manner already, but I would like to see it done in the spirit of functional programming. Being new to F# and functional programming, I'm having some trouble...

flag

50% accept rate
2  
It should be noted that you cannot remove the characters from an existing string instance, since F# strings are immutable. You can only create a new string instance without those characters. – Pavel Minaev Nov 1 at 3:32
2  
"since F# strings are immutable" isn't 100% accurate. The System.String type, which F# uses, for all .NET applications is immutable. The only supported mutable string type is StringBuilder in the System.Text namespace. – Chris Smith Nov 1 at 16:58
Thanks everyone for your help – RodYan Nov 1 at 21:30

5 Answers

vote up 12 vote down check
"Hello world".[n..];;
link|flag
vote up 0 vote down
"Hello world".Substring 3
link|flag
vote up 0 vote down

Another way to do it (not particularly functional either). In fact it uses features of both world: mutation and lambda:

let remove_first_n (s:string) (n:int) =
    let arr = Array.create (s.Length-n) '0'
    String.iteri (fun i c -> if i>=n then arr.[i-n] <- c else ()) s
    new string(arr)

That being said, I think the best way is Jeff's solution.

One more thing to keep in mind is that Strings are immutable in .NET (a string value cannot be modified once built) and that F# strings are actually .NET Strings.

link|flag
vote up 0 vote down
let rec remove_first_n (str:string) (n:int) =
  match str, n with
  | _, n when n <= 0 -> str
  | "", _ -> ""
  | _ -> remove_first_n (str.Remove(0,1)) (n-1)
link|flag
1  
+1 for showing typical recursive function structure, but -2 for coming up with an O(n) solution to an O(1) problem – Brian Nov 1 at 6:06
Why should this be O(1)? – Dario Nov 1 at 16:51
Oops, I mean O(N^2) versus O(N). – Brian Nov 2 at 5:19
vote up 1 vote down

As @Jeff has shown, you can do this in six characters, so this is not necessarily the best question to ask to see how to "do it in the spirit of functional programming".

I show another way, which is not particularly "functional" (as it uses arrays, but at least it doesn't mutate any), but at least shows a set of steps.

let s = "Hello, world!"
// get array of chars
let a = s.ToCharArray()
// get sub array (start char 7, 5 long)
let a2 = Array.sub a 7 5
// make new string
let s2 = new string(a2)
printfn "-%s-" s2  // -world-
link|flag

Your Answer

Get an OpenID
or

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