How to remove whitespace from a string

Marcone marcone at email.com
Fri Jan 17 21:39:44 UTC 2020


On Thursday, 16 January 2020 at 13:36:10 UTC, Namal wrote:
> Hello, what is the way to remove whitespace from a string (not 
> only at the beginning and end)..

import std;

void main(){
	string name = "   Marvin   Will   ";
	writeln(name.replace(" ", "")); // MarvinWill
}


More information about the Digitalmars-d-learn mailing list