Advertisement
Guest User

new

a guest
Oct 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import re
  2.  
  3. with open('/storage/emulated/0/1/t.pyworkflow_2.html','r')as f:
  4.     html=f.read()
  5.  
  6. datas=re.findall('onClick="javaScript:turnDeal\((.*?)\);"',html)
  7. for d in datas:
  8.     a,c=d.split(',')[1],d.split(',')[3]
  9.     print(a,c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement