मुख्य कंटेंट तक स्किप करें

Text.TrimEnd

पिछले सभी सफेद रिक्त स्थान निकालता है.

Syntax

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

Remarks

पाठ मान text से निकाले गए सभी पिछले सफेद रिक्त स्थान का परिणाम लौटाता है.

Examples

Example #1

" a b c d " से पिछले सफेद रिक्त स्थान निकालें.

Text.TrimEnd("     a b c d    ")

Result:

"     a b c d"

Category

Text.Transformations