我需要一个正则表达式来提取不同字符串中vector_name
的值。我尝试了以下方法,但无法使其正常工作。
重新导入
# I want to extract the value of vector_name using a regular expression
mystring1 = "options={}, params={vector_name=get_x, default_like_count=2, seeting_id=1200, system=0 back"
mystring2 = "literal options={}, params={setting_id=1200, seed_val=22, system=0, vector_name=get_Z foobar}"
mystring3 = "params={seed_rand=1200, seed_val=22, system=0, vector_name=corodinate2, tt=lly}"
# I have
re.search(r'vector_name=([^/]+),', mystring1).group(1)
# should give get_x
re.search(r'vector_name=([^/]+),', mystring2).group(1)
# should give get_Z
re.search(r'vector_name=([^/]+),', mystring3).group(1)
# should give corodinate2
有人知道什么是正确的正则表达式吗?
答案 0 :(得分:2)
[^/]+
模式与/
以外的一个或多个字符进行贪心匹配。
您可以限制要与\w+
匹配的字符,以匹配1个或多个单词字符(即字母,数字,下划线):
r'vector_name=(\w+)'
请参见regex demo
import re
strs = ['options={}, params={vector_name=get_x, default_like_count=2, seeting_id=1200, system=0 back', 'literal options={}, params={setting_id=1200, seed_val=22, system=0, vector_name=get_Z foobar}', 'mystring3 = "params={seed_rand=1200, seed_val=22, system=0, vector_name=corodinate2, tt=lly}' ]
rx = re.compile(r'vector_name=(\w+)')
for s in strs:
m = rx.search(s)
if m:
print(m.group(1))
# => ['get_x', 'get_Z', 'corodinate2']