从多行字符串python获取所需的值

时间:2018-07-19 10:43:32

标签: python parsing filter pattern-matching

我在python中有以下字符串:

Data sent by: zabbix

The production server prod1 is unavailable

https://zabbix.com/link/to/zabbix/dashboard

Environment: prod1
Dep: dev

如何从该字符串中获取Environment和Dep以从中生成URL?我试图逐行走,但这似乎不是一个好的解决方案。请帮助我是python新手。谢谢

1 个答案:

答案 0 :(得分:2)

我的意思是,逐行浏览没错。另一种选择是使用正则表达式

import re
text = '''Data sent by: zabbix

The production server prod1 is unavailable

https://zabbix.com/link/to/zabbix/dashboard

Environment: prod1
Dep: dev'''

env = re.search(r'Environment: (.+)', text).group(1)
dep = re.search(r'Dep: (.+)', text).group(1)
url = 'zabbix.com/link/to/zabbix/dashboard/{}/{}'.format(dep, env)