On Sunday, 30 April 2017 at 15:31:39 UTC, Jolly James wrote: > Is there a String Comparison Operator in D? Yeah, just the usual comparison operators: "abc" == "abc" "abc" != "ABC" ~ is for string concatenation, i.e.: "abc" ~ "def" == "abcdef"