(?s).*ExampleProperty=(?P<example>[^\n]*).*
.*ExampleProperty=(?P<example>...)[^\n*]

所以,这是一个简短的正则表达式,它将匹配您的文本并获得所有这些属性:

(?s)\/system.\/sensor\d\d.+DeviceID=(?P<sensor>[^\n]*).*CurrentReading=(?P<reading>[^\n]*).*SensorType=(?P<type>[^\n]*).*HealthState=(?P<health>[^\n]*).*
<sensor> = 37-Fuse 
<reading> = 49
<type> = Temperature
<health> = Ok