Vyxapedia

Element - ø↲ - Custom Pad Right

Characters: ø,


Description

Pad a string to the right with a certain character


Overloads

  • any-str-num - pad a to the right with c so a has length b
  • any-num-str - pad a to the right with b so a has length c

Examples

  • `xyz` `x` 4 ø↲ = `xyzx`
  • `123` `&` 8 ø↲ = `123&&&&&`
  • `123` 8 `&` ø↲ = `123&&&&&`
  • `324` ` ` 2 ø↲ = `324`