[your code here] HexViewer

Vladimir Panteleev via Digitalmars-d digitalmars-d at puremagic.com
Wed Aug 2 15:02:49 PDT 2017


On Wednesday, 2 August 2017 at 21:59:23 UTC, Vladimir Panteleev 
wrote:
> Good idea! But I think it needs more ranges:

The format call can be substituted with writefln directly:

void main(string[] args)
{
     import std.algorithm, std.format, std.stdio;
     enum cols = 16;
     args[1].File("rb").byChunk(16).each!(chunk =>
         writefln!"%(%02X %)%*s  %s"(
             chunk,
             3 * (cols - chunk.length), "",
             chunk.map!(c =>
                 c < 0x20 || c > 0x7E ? '.' : char(c))));
}



More information about the Digitalmars-d mailing list