Gary Miller:

if (MyString[0..1])== ???(219)) writeln("ASCII Block found")

enum char block = 219;
...
if (myString[i] == block)
    "ASCII Block found".writeln;

Note that variable/function names in D start with a lower case.

Bye,
bearophile

Reply via email to