Funzione RTrim di VBScript

RTrim

La funzione Rtrim rimuove gli spazi vuoti che sono presenti sul lato destro della stringa.

Sintassi

RTrim(String)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         var = "Microsoft VBScript"
         document.write("After Rtrim : " & RTrim(var) & "<br />")

      </script>
   </body>
</html>

Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrĂ  il seguente risultato:

After Rtrim : Microsoft VBScript