Hello,
I am trying to extract the error message from this string: {"messages":["This username is already in use. Please try a different username."]}
For this I use the extract with Regex operator with the following expression: "messages":\["(.*?)"]
which should work if I am to believe online resources like https://regex101.com/
However, I am not able to extract the match and I get the whole string instead, like so: "messages":["This username is already in use. Please try a different username."]
What am I missing? How can I make the operator return This username is already in use. Please try a different username.
?