Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 463 Bytes

text-trimend.md

File metadata and controls

31 lines (21 loc) · 463 Bytes
description title
Learn more about: Text.TrimEnd
Text.TrimEnd

Text.TrimEnd

Syntax

Text.TrimEnd(text as nullable text, optional trim as any) as nullable text

About

Returns the result of removing all trailing whitespace from text value text.

Example 1

Remove trailing whitespace from " a b c d ".

Usage

Text.TrimEnd("     a b c d    ")

Output

"     a b c d"