首页 > 编程 > VBScript > 正文

vbs实现的保存剪贴板中的文本并编辑或保存

2020-06-26 18:36:29
字体:
来源:转载
供稿:网友
这篇文章主要介绍了通过vbs实现的保存剪贴板中的文本实现编辑或保存的实现方法,需要的朋友可以参考下
 

保存剪贴板中的文本.vbs

原理就是首先判断是否存在同名文件,存在就名字后面+1,然后将剪贴板的内容保存到自定义扩展名的文件里

 

复制代码代码如下:

set fso=createobject("scripting.filesystemobject") : name=1
Dim na
na=Inputbox("请输入拓展名:","拓展名","txt")
while fso.fileexists(name&"."&na)=true
name=name+1
wend
set o=fso.opentextfile(name&"."&na,2,true)
set hf=Createobject("htmlfile")
wind=hf.parentwindow.clipboarddata.getdata("text")
o.writeline wind : o.close

 

保存剪贴板中的文本并编辑.vbs

 

复制代码代码如下:

set fso=createobject("scripting.filesystemobject") : name=1
Dim na
na=Inputbox("请输入拓展名:","拓展名","txt")
while fso.fileexists(name&"."&na)=true
name=name+1
wend
set o=fso.opentextfile(name&"."&na,2,true)
set hf=Createobject("htmlfile")
wind=hf.parentwindow.clipboarddata.getdata("text")
o.writeline wind : o.close
createobject("wscript.shell").exec "notepad.exe "&name&"."&na&""
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表