The Wayback Machine - https://web.archive.org/web/20220530003819/https://github.com/topics/rng
Skip to content
#

rng

Here are 402 public repositories matching this topic...

ivan-pi
ivan-pi commented Apr 23, 2021

Description

A function to pad a string with zeros or another symbol to a given width could be helpful in many cases, especially together with the to_string() function for integer to string conversion.

Currently available methods to achieve this are using concatenation

width = 32
str = "hello"
padded_str = repeat('0',width-len(str)')//str

and perhaps also internal file I/O

good first issue idea easy topic: strings

Improve this page

Add a description, image, and links to the rng topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rng topic, visit your repo's landing page and select "manage topics."

Learn more