0

I have json-response in such form: "f42210c4-2c67-44b2-af6c-07021ed83743" How can I take only guid (without quotes) and record it to properties for future use.

Luka
  • 1

1 Answers1

0

If you are using Groovy (or Java) in SoapUI scripts, use

string = string.replace("\"", ""); 

to 'cut' the edges of your response.

Mate Mrše
  • 7,997
  • 10
  • 40
  • 77