zoukankan
html css js c++ java
自动获取美元最新汇率
Sub MACRO1()
With CreateObject("Msxml2.XMLHTTP")
.Open "GET", "
http://www.google.cn/search?&q=1usd%3D%3Frmb
", False
.Send
MsgBox Split(Split(.responseText, "1美元 =")(1), "人民币")(0)
End With
End Sub
查看全文
相关阅读:
迭代器生成器
elasticsearch系列(五)score
数据结构(五)串
数据结构系列(四)栈与队列
数据结构系列(三)线性表
数据结构系列(二)算法
数据结构系列(一)入门
elasticsearch系列(四)部署
SpringBoot系列(一)RestTemplate
基于python的爬虫(一)
原文地址:https://www.cnblogs.com/fengju/p/6336270.html
最新文章
Appium自动化测试框架
使用Xpath定位元素
解除服务器端口号占用及服务器端口号的修改
决策树算法(ID3)
python单例模式
python 乘法表、打印菱形
Qt中文本编辑器实现语法高亮功能(Qscitinlla)
Linux下使用thrfit
windows下thrift的使用(C++)
windows下thrift的使用(python)
热门文章
利用python制作电子签名
#pragma region、{}
python定时器
面向对象的日常笔记
自定义threading.local
Python并发编程
python网络编程
面向对象进阶
python中类方法,实例方法,静态方法的作用和区别
面向对象基础
Copyright © 2011-2022 走看看