Len
La función Len devuelve la longitud de la cadena de entrada dada, incluidos los espacios en blanco.
Sintaxis
Len(String)
Ejemplo
<!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>
Cuando lo guarda como .html y lo ejecuta en Internet Explorer, la secuencia de comandos anterior producirá el siguiente resultado:
Length of var1 is : 18
Length of var2 is : 36