On Sunday, 30 April 2017 at 15:31:39 UTC, Jolly James wrote: > Is there a String Comparison Operator in D? You normally use double equation marks (==) to do that. auto name = "Jack"; if( name == "Jack" ) writeln("Hi Jack!");