الرئيسية > lang > rtrim 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr fa id vi ko ja ru zh zh_TW eo
السابق  التالي  تحرير  إعادة تسمية  تراجع  بحث  الإدارة  
المستندات  
تحذير! هذه الصفحة لم يتم ترجمتها.  See english version 
RTrim$
sResult = RTrim$ ( sExpr AS String ) AS String
sResult = RTrim ( sExpr AS String ) AS String

Strips white spaces from the right of the String sExpr.

A white space is any character whose ASCII code is strictly lower than 32.

RTrim is optimized so that the Expr string is not internally duplicated during the stripping.

مثال

PRINT "<"; RTrim$("Gambas"); ">"

<Gambas>

PRINT "<"; RTrim$("  Gambas  "); ">"

<  Gambas>

إنظر أيضا

دوال النصوص, LTrim$, Trim$