Hello,
I am trying to extract values from a string, I have tried to get re.match
working but have not had any luck. The string is:
'/opt/ad/bin$ ./ptzflip\r\nValue = 1800\r\nMin = 0\r\nMax = 3600\r\nStep = 1\r\n'
I have tried:
map(int,re.search("Value\s*=\s*").group(1))
and also:
'/opt/ad/bin$ ./ptzflip\r\nValue = 1800\r\nMin = 0\r\nMax = 3600\r\nStep = 1\r\n'.split(' = ')
I am not sure what else to add or do. I want to retrieve the attributes 'Value, Max, Step'
and their values. Is there anyway to do this?
Thanks for any help