VBScript CreateObject 函数

云端遗梦录

VBScript CreateObject 函数



CreateObject 函数创建一个指定类型的对象。

语法


CreateObject(servername.typename[,location])


参数 描述
servername 必需。提供此对象的应用程序名称。
typename 必需。对象的类型或类(type/class)。
location 可选。在何处创建对象。

实例

创建正则表达式对象:

<script type="text/vbscript">

txt="This is a beautiful day"
Set objReg=CreateObject("vbscript.regexp")
objReg.Pattern="i"
document.write(objReg.Replace(txt,"##"))

</script>

以上实例输出结果:

Th##s is a beautiful day

版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码