文字列の右側から文字をトリムします
Unicode 組み込み関数 (PRIM_LIBI.IUnicodeIntrinsics) のメンバ
名前 | タイプ | データ タイプ | 記述 |
---|---|---|---|
Result | *Result (任意) | Unicode 文字列 | 結果の文字列 |
OfText | *Input (任意) | Unicode 文字列 | トリムされる文字 |
RightTrim を使用すると、文字列から末尾ブランクまたはその他の文字を削除できます。 OfText パラメータには複数の文字を指定できます。
この例では、 #String に "ABCDE" が含まれていた場合、結果は "ABCDE" となります。
#Com_owner.Caption := #String.RightTrim
この例では、 #String に AAA が含まれていた場合、結果は "A" となります。 After the first AA has been removed from the string, only a single A remains that does not match the OfText parameter value.
#Com_owner.Caption := #String.RightTrim( AA )
2018 - V14SP1