How do I remove the first space of a string in Haskell?
For example:
removeSpace " hello" = "hello"
removeSpace " hello" = " hello"
removeSpace "hello" = "hello"
|
How do I remove the first space of a string in Haskell? For example:
|
|||||||||||
|
|
Here are multiple remove-space options, to show of a few functions and ways of doing things. To take multiple spaces, you can do
This means the same as or for more general removal,
If you're really sure you just want to take one space (and you certainly seem to be), then pattern matching is clearest:
This works because in haskell, To remove one whitespace character, we can use function guards (if statements with very light syntax, if you've not met them):
|
||||
|
|
|
Simply use pattern matching:
|
|||
|
|
|
In Haskell, strings are simply list of characters, i.e., the Prelude defines
Furthermore, there are about three ways to write a function:
If you are new to Haskell and to functional programming, I recommend writing most of your functions using the first method and then gradually shift toward using more and more predefined functions. For your problem—removing the first space character ( Let us first write a signature for your function:
(I have written Pattern matching against a list, we need to consider two cases: the list being empty ( Dealing with the empty list is, as always, simple: there are no characters left, so there is nothing to remove anymore and we simply return the empty list.
Then the situation in which we have a head element (a character) and a tail list. Here we need to distinguish two cases again: the case in which the head character is a space and the case in which it is any other character. If the head character is a space, it will be the first space that we encounter and we need to remove it. As we only have to remove the first space, we can return the remainder of the list (i.e., the tail) without further processing:
What remains is to deal with the case in which the head character is not a space. Then we need to keep it in the returned list and, moreover, we need to keep seeking for the first space in the remainder of the list; that is, we need to recursively apply our function to the tail:
And that's all. The complete definition of our function now reads
This is arguably as clear and concise a definition as any clever combining of predefined functions would have given you. To wrap up, let us test our function:
If you really want construct your function out of predefined functions, here is one alternative definition of
(You can see why I prefer the one using explicit pattern matching and recursion. ;-)) Note: I have assumed that your objective is indeed to remove the first space in a string, no matter where that first space appears. In the examples you have given, the first space is always the first character in the string. If that's always the case, i.e., if you are only after dropping a leading space, you can leave out the recursion and simply write
or, combining the first and last cases,
or, using predefined functions,
|
||||
|
|
|
To remove the first space anywhere in a string:
Where It then splits the results and puts them in a tuple that we take and combine, skipping the first character in the second list (the space). Additionally we assert that the remainder is not |
||||