TextText.TrimEndこのページの見出し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