Funzione Len di VBScript

Len

La funzione Len restituisce la lunghezza della stringa di input data compresi gli spazi vuoti.

Sintassi

Len(String)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         var1 = "Microsoft VBScript"
         document.write("Length of var1 is : " & Len(var1) & "<br />")

         var2 = "Microsoft VBScript"
         document.write("Length of var2 is : " & Len(var2) & "<br />")

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

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

Length of var1 is : 18
Length of var2 is : 36