Vyxapedia

Element - - Increment / Space Replace With 0

Characters:


Description

Add 1 to a number / replace all spaces in a string with "0"


Overloads

  • num - a + 1
  • string - a.replace(" ","0")

Examples

  • 5 › = 6
  • ⟨3|4⟩ › = ⟨4|5⟩
  • ` 101` › = `00101`