I want to parse string:
????log L 07/31/2012 - 14:32:50: "Username1<4><STEAM_ID_PENDING><CT>" killed "Username2<2><STEAM_ID_PENDING><TERRORIST>" with "m4a1"
I must get values:
- Username1
- Username2
- m4a1
I have regex pattern
Regex reg = new Regex("[^\"]+\"([^<]+)<[^\"]+\" killed \"([A-Za-z0-9]+)[^\"]+\" with \"([A-Za-z0-9]+)\"");
This works perfectly if second username does not contains _ this or this -
If first contains regex getting value.
Please help me to modify my pattern
Thanks