i have strings with Following pattern in python :
2011-03-01 14:10:43 C:\Scan\raisoax.exe detected Trojan.Win32.VBKrypt.agqw
how get substrings: C:\Scan\raisoax.exe and Trojan.Win32.VBKrypt.agqw
between string is tab
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A solution using regexes:
This will catch files with spaces in them as well. It will fail if you have files with ” detected ” in them. (you can add a forward assertion to fix that as well.