Looking for a regex to capture all quoted key-value pairs from a log line (exim, to be precise). However, the value can also contain quotes
Tried multiple examples from other SO questions (eg Regular expression to match key-value pairs where value is in quotes or apostrophes), all have failed as soon as they hit an internal quote character
Test data, all valid examples:
A="value" F="something here" T="This is the value"
F="something \"here\"" T="The value's here" X=ignore
F="something's here" T="He said \"This is also the value\""