mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[DOC] Enhanced RDoc for String (#5726)
Treats:
#ljust
#rjust
#center
#partition
#rpartition
This commit is contained in:
parent
79bd12a6e4
commit
5525e47a0b
Notes:
git
2022-03-29 05:49:48 +09:00
Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
7 changed files with 114 additions and 54 deletions
16
doc/string/ljust.rdoc
Normal file
16
doc/string/ljust.rdoc
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Returns a left-justified copy of +self+.
|
||||
|
||||
If integer argument +size+ is greater than the size (in characters) of +self+,
|
||||
returns a new string of length +size+ that is a copy of +self+,
|
||||
left justified and padded on the right with +pad_string+:
|
||||
|
||||
'hello'.ljust(10) # => "hello "
|
||||
' hello'.ljust(10) # => " hello "
|
||||
'hello'.ljust(10, 'ab') # => "helloababa"
|
||||
'тест'.ljust(10) # => "тест "
|
||||
'こんにちは'.ljust(10) # => "こんにちは "
|
||||
|
||||
If +size+ is not greater than the size of +self+, returns a copy of +self+:
|
||||
|
||||
'hello'.ljust(5) # => "hello"
|
||||
'hello'.ljust(1) # => "hello"
|
||||
Loading…
Add table
Add a link
Reference in a new issue