Parse text from response data

Hi,

How can I parse the answer if it returns text lines?

Thanks and regards.

Pablo

In my case, I needed to capture the response to evaluate each line ā€¦

var testText =
testText = pm.response.text().split(ā€œ\nā€);

this will generate an array for each line. :slightly_smiling_face: