Hello
I have a txt file with a pattern as below
=============================================
Computer name: Abc IP address: 10.10.10.10
User name: user Last pin : Aug 06 2009 10:44:35
=============================================
Computer name: Def IP address: 10.10.10.11
User name: user2 Last pin : Aug 07 2009 10:44:35
=============================================
All I require is to read the txt file and create a csv file with the keys (values after ":" and tab) separated by a ";" so the output file should have values :
Abc;10.10.10.10;user;Aug 06 2009 10:44:35
Def;10.10.10.11;user2; Last pin : Aug 07 2009 22:45:22
So far I open the txt file and try to search the word eg: Computer name:, User name: and so on but not able to get any further. Python at the moment is very new to me. I feel like stuck at the moment
Any kind of help would be greatly appreciated