• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

VBScript Mid 函数

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

VBScript Mid 函数

VBScript Mid 函数用于从字符串中返回指定数量的字符。


完整的 VBScript 参考手册

Mid 函数从字符串中返回指定数量的字符。

提示:请使用 Len 函数来确定字符串中的字符数量。

语法

Mid(string,start[,length])

参数 描述
string 必需。从其中返回字符的字符串表达式。
start 必需。规定起始位置。如果设置为大于字符串中的字符数量,则返回空字符串("")。
length 可选。要返回的字符数量。

实例

实例 1

返回 1 个字符,从位置 1 开始:

<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(Mid(txt,1,1))
</script>

以上实例输出结果:

T

尝试一下 »

实例 2

返回 15 个字符,从位置 1 开始:

<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(Mid(txt,1,15))
</script>

以上实例输出结果:

This is a beaut

尝试一下 »

实例 3

返回所有字符,从位置 1 开始:

<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(Mid(txt,1))
</script>

以上实例输出结果:

This is a beautiful day!

尝试一下 »

实例 4

返回所有字符,从位置 12 开始:

<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(Mid(txt,12))
</script>

以上实例输出结果:

eautiful day!

尝试一下 »

完整的 VBScript 参考手册

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
VBScript Eval 函数发布时间:2022-01-22
下一篇:
VBScript GetLocale 函数发布时间:2022-01-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap