Sum string lengths

H. S. Teoh hsteoh at quickfur.ath.cx
Wed May 13 14:01:41 UTC 2020


On Wed, May 13, 2020 at 01:52:13PM +0000, Andrey via Digitalmars-d-learn wrote:
> Hi,
> I want to sum lengths of all strings in array:
> > auto data = ["qwerty", "az", "!!!!"];

data.map!(s => s.length).sum;


T

-- 
It only takes one twig to burn down a forest.


More information about the Digitalmars-d-learn mailing list