Extract HTTP headers
Content:
Content-Type: text/htmlContent-Length: 163myHeader: myValueDate: Thu, 03 Feb 2005 16:44:33 GMTServer: Apache-Coyote/1.1Regex: myHeader: (.*)
Comment: (.*) means "any character, except the newline character". The brackets are required to define a group. Extract the header value in NeoLoad using $1$.
Home