mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
docs: add an example of zero padding in string interpolation
This commit is contained in:
parent
c2d501e8a9
commit
362a83d0c6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user