Hi,
I'm a newbie to python and I need to extract numbers from a path name. A path name such as:
/grups.google.com/grup/cmp.lng.pythn/browse_thread/thread/8_ee63e_17del_0c12d
And I'm trying to get it to take out the 17. I thought I could just do:
det file = /grups.google.com/grup/cmp.lng.pythn/browse_thread/thread/8_ee63e_[B]17del[/B]_0c12d
index = det_file.find('del')
dent = det_file[index[-2]]
This doesnt' work, could you please advise?