I want use regex to find something in string (or QString) that is between " (quotes).
My simple String: x="20.51167" and I want 20.51167.
Is it possible with Regular Expressions ??
On start I had somthing like this string :
<S id="1109" s5="1" nr="1183" n="Some text" test=" " x="20.53843" y="50.84443">
Using regexp like: (nr=\"[0-9]+\")
(y=\"[0-9 .^\"]+\")"
etc
I get my simple string like x="20.51167". Maybe this is wrong way and I can get value that is between quotes at one time ??