VBScript Mid 函数
Mid
Mid 函数从给定的输入字符串中返回指定数量的字符。
语法
Mid(String,start[,Length])
String,必需参数。 输入字符串,从中返回指定数量的字符。
Start,必需参数。 一个整数,指定字符串的起始位置。
Length,可选参数。 一个整数,指定要返回的字符数。
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> var = "Microsoft VBScript" document.write("Line 1 : " & Mid(var,2) & "<br />") document.write("Line 2 : " & Mid(var,2,5) & "<br />") document.write("Line 3 : " & Mid(var,5,7) & "<br />") </script> </body> </html>
当您将其另存为 .html 并在 Internet Explorer 中执行时,上述脚本将产生以下结果 −
Line 1 : icrosoft VBScript Line 2 : icros Line 3 : osoft V