from uiautomation import WindowControl,MenuControl import re wx=WindowControl( Name='微信', #searchDepth=1 ) print(wx) wx.SwitchToThisWindow() hw=wx.ListControl(Name='会话') print('寻找会话控制绑定',hw) # df = pd.read_csv('E:/pycharm/回复数据.csv', encoding='gb18030') while True: we=hw.TextControl(searchDepth=4) while not we.Exists(8): pass print('查找未读消息',we) if we.Name: we.Click(simulateMove=False) last_msg=wx.ListControl(Name='消息').GetChildren()[-1].Name #这两行代码是最重要的,绑定微信的聊天信息 print('读取最后一条消息',last_msg) new_numbers = [last_msg] for num in numbers: if num > 10000000000 and num < 20000000000: new_numbers.append(num) 这行代码里我想把last_msg里大于10000000000小于20000000000的数字打印出来对吗
时间: 2023-12-08 12:06:45 浏览: 75
不对,因为`last_msg`变量里面存储的是字符串类型的消息文本,不是数字,所以你不能直接从`last_msg`中提取数字。如果你想要提取`last_msg`中符合条件的数字,可以使用正则表达式来进行匹配。以下是实现的代码示例:
```
from uiautomation import WindowControl, MenuControl
import re
wx = WindowControl(Name='微信')
print(wx)
wx.SwitchToThisWindow()
hw = wx.ListControl(Name='会话')
print('寻找会话控制绑定', hw)
# 定义包含数字的列表
numbers = [1234567890, 20000000000, 30000000000]
while True:
we = hw.TextControl(searchDepth=4)
while not we.Exists(8):
pass
print('查找未读消息', we)
if we.Name:
we.Click(simulateMove=False)
last_msg = wx.ListControl(Name='消息').GetChildren()[-1].Name
# 这两行代码是最重要的,绑定微信的聊天信息
print('读取最后一条消息', last_msg)
new_numbers = []
# 使用正则表达式匹配符合条件的数字
for num in re.findall(r'\b\d{11}\b', last_msg):
if int(num) > 10000000000 and int(num) < 20000000000:
new_numbers.append(int(num))
# 输出符合条件的数字
print('符合条件的数字:', new_numbers)
```
这样就可以从`last_msg`中提取符合条件的数字并打印出来了。
阅读全文