Null terminated character

frame frame86 at live.com
Thu Jun 23 17:33:19 UTC 2022


On Thursday, 23 June 2022 at 17:27:51 UTC, frame wrote:
> On Thursday, 23 June 2022 at 16:16:26 UTC, vc wrote:
>> I've try this '\0'*10 and didn't work, i want the results be 
>> \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
>
> One way:
>
> ```d
> import std.range;
>
> repeat("\0", 10).join("");
> ```

If you just need an array:

```d
char[] n;
n.length = 10;
n[] = '\0';
```


More information about the Digitalmars-d-learn mailing list