Can't apply pattern matcher on http response data

In my scenario i do an http request that correctly retrieved the html of a page in the output Data.
This module is followed by a patter matcher that extract the content of an html element.

When i run the complete scenario there is no output from the pattern matcher, but when i manually copy the Data of the response and test the pattern matcher module alone by copying this data in the input, it correctly output the content of the html element.

My pattern matching module Text propertiy is correctly set to the Data of the Http response.

Did you ever encounter something like this ?

The manually input text


correctly gives an output
image

while the same input coming from the http module

gives nothing
image

here is the config of the pattern matcher module

Thank you

Welcome to the Make community!

Could you go to regex101.com, paste in your Pattern at the top and paste a complete/full example text you are trying to match from below it?

Then, save the regex example and share the link with us here.

This will allow others to assist you here with your pattern. Thanks!

I got it thank you, it is because there was some line break that where removed in the copy pasted text. The regex was correct but i had to check the single line option
image

1 Like