Extracting words between delimiters [] in python
- by kris
From the below string, I want to extract the words between delimters [ ] like 'Service Current','Service','9991','1.22':
str='mysrv events Generating Event Name [Service Current], Category [Service] Test [9991] Value [1.22]'
How can I extract the same in python?
Thanks in advance
Kris