You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »


 RIGHT$ returns the specified number of characters from the right side of the argument string value


Syntax

RIGHT$(StrExpr$, Length%) 

Arguments


  • StrExpris the string value to be shorten



  • Length% is the number of characters to include


Remarks

  1. "NullString" is considered as a DETERMINED empty string. 

Examples 

RIGHT$("NullString", 3)

returns

"NullString"


RIGHT$("Qnowledge Wageningen", 10)

returns

"Wageningen"

RIGHT$("Qnowledge Wageningen", 0)

returns

"NullString"

returns

"NullString"


RIGHT$("Qnowledge Wageningen", 50)

returns

"Qnowledge Wageningen"


 

Quick links: Functions overview | Attribute overview | Constants overview | Dimensions overview


  • No labels