VBA 有内置的 URL 解码吗?
我只需要解码一个 URL,例如,将 %2E 替换为 . 如果没有内置方法,我可以破解一个方法,但我的假设是必须已经存在一个 URL 解码工具。
I just need to decode a URL, for example, replace %2E with .
I can hack out a method if one isn't build in, but my assumption is that there must be a URL decoding tool already existing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 htmlfile 对象的 EncodeURL 和 DecodeURL 函数(后期绑定)
我从这个网站获得了这个源: http://cocosoft.kr/442< /a>
例如,
EncodeURL and DecodeURL function using htmlfile object(Late binding)
I got this source from this site: http://cocosoft.kr/442
For example,
不。
但是这里有一个:URL Encoder and Decoder for VB
或者沿行(可能不完整):
另外,看看 如何在 Excel VBA 中对字符串进行 URL 编码?
No.
But here's one: URL Encoder and Decoder for VB
Or something along the lines of (possibly not complete):
Also, take a look at How can I URL encode a string in Excel VBA?
这是另一个答案中发布的 URL 中的代码,以防万一它运行良好而出现故障。
http://www.freevbcode.com/ShowCode.asp?ID=1512
Here is the code from the URL posted in another answer in case it goes down as it works great.
http://www.freevbcode.com/ShowCode.asp?ID=1512
这是我几年前写的一个片段
-markus
Here's a snippet I wrote years ago
-markus