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...
|
|
|||||||||||
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
Another way to do it (not particularly functional either). In fact it uses features of both world: mutation and lambda:
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. |
||
|
|
|
|
|
||
|
|
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.
|
||
|
|
