Skip to content
Snippets Groups Projects
Commit 13d6c59e authored by bigbes's avatar bigbes Committed by Roman Tsisyk
Browse files

Adding string.ljust(), string.rjust() and string.center()

* `string.ljust(inp, width[, char])`  - returns left-justified string
  filled with charachter 'char' (' ' by default).
* `string.rjust(inp, width[, char])`  - returns right-justified string
  filled with charachter 'char' (' ' by default)
* `string.center(inp, width[, char])` - returns centered string
  filled with charachter 'char' (' ' by default)

closes gh-2214
parent 73eac923
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment