What is the recomended way to remove white space from a char[] in D. for example using dmd 2.057 I have,

import std.stdio;
import std.string; 
import std.algorithm;

char[] line;

int main(){
  line = r"this is a     line with spaces   "; 
  line = removechars(line," "); 
  writeln(line);
  return 0;
}

On compile, this will generate this error:

Error: cannot implicitly convert expression ("this is a     line with spaces   ") of type string to char[]
    Error: template std.string.removechars(S) if (isSomeString!(S)) does not match any function template declaration
    Error: template std.string.removechars(S) if (isSomeString!(S)) cannot deduce template function from argument types !()(char[],string)

On doing some google search, i find that a similar error had been reported as a bug and had been filed in june 2011, but not sure whether it was was referring to the same thing or a different issue.

In general, what is the approach recommended to remove certain characters from a string and maintating the order of characters from the previous array of chars?

In this case return

assert(line == "thisisalinewithspaces")

after removing whitespace characters

link|improve this question

Does changing line = r"this is a line with spaces "; to line = r"this is a line with spaces ".dup; help? – Mehrdad Feb 6 at 20:50
no it does not. It only eliminates the first error on type conversion. – eastafri Feb 6 at 20:57
feedback

2 Answers

up vote 4 down vote accepted

removechars accepts all string types (char[], wchar[], dchar[], string, wstring and dstring), but the second argument has to be the same type as the first. So if you pass a char[] as first arg, the second arg also has to be a char[]. You are, however, passing a string: " "

A simple solution would be to duplicate the string to a char[]: " ".dup

removechars(line, " ".dup)

This also works:

removechars(line, ['x\20'])

link|improve this answer
great! the explanation I was looking for! thanks! – eastafri Feb 6 at 22:06
That answers the question of what's going on here for me too :). I took a quick look at the source for removechars and couldn't tell why it wouldn't work as he had written. – eco Feb 6 at 23:58
feedback

Give removechars an immutable(char)[] (which is what string is aliased to). You'll also need to .dup the result of removechars to get a mutable char array.

import std.stdio;
import std.string; 
import std.algorithm;

char[] line;

void main()
{
    auto str = r"this is a     line with spaces   "; 
    line = removechars(str," ").dup; 
    writeln(line);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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