Skip to content

Remove blanks¤

Remove whitespace from a string.

Parameter¤

None

Advanced Parameter¤

None

  • trim — Remove blanks removes only plain space characters and does so throughout the entire string regardless of position. Trim is the choice when only the surrounding whitespace needs to go and the internal structure must be preserved; unlike Remove blanks, it also handles tabs and newlines at the edges.

Comments