Decodes and removes the first UTF-8 character from the front of a string, returning it as a dchar. (community summary)
string str = "Hello, World!"; assert(str.decodeFront == 'H' && str == "ello, World!"); str = "å"; assert(str.decodeFront == 'å' && str.length == 0); str = "å";
Decodes and removes the first UTF-8 character from the front of a string, returning it as a dchar. (community summary)