fork download
  1. import re
  2. zz = 'options={}, params={vector_name=get_x, default_like_count=2, setting_id=1200, system=0 back options={}, params={vector_name=get_x, default_like_count=2, setting_id=1200, system=0 back'
  3. m = re.search(r'vector_name=(\w+)', zz)
  4. if m:
  5. print(m.group(1))
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
get_x