docs: add an example of zero padding in string interpolation

pull/8201/head^2
Delyan Angelov 2021-01-23 09:02:28 +02:00
parent c2d501e8a9
commit 362a83d0c6
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 3 additions and 2 deletions

View File

@ -480,8 +480,9 @@ The compiler takes care of the storage size, so there is no `hd` or `llu`.
```v
x := 123.4567
println('x = ${x:4.2f}')
println('[${x:10}]') // pad with spaces on the left
println('[${int(x):-10}]') // pad with spaces on the right
println('[${x:10}]') // pad with spaces on the left => [ 123.457]
println('[${int(x):-10}]') // pad with spaces on the right => [123 ]
println('[${int(x):010}]') // pad with zeros on the left => [0000000123]
```
### String operators