On Tue, 14 Dec 2004 10:27:11 +0100, jkarstedt <[EMAIL PROTECTED]> wrote: > Hi all. > I try to use a "ForEach Controller" for wml sites. > he problem are quoted ampersand chars inside the urls I extracted > like this: > key1=value1&key2=value2 > > for further requests I have to replace the "&" by "&" > Does anyone knows how to do this for jmeter ?
Some suggestions: 1) extract value1 and value2 without the & in two RegexExtractors; they will then be easy to use later. 2) Extract them both in the same RegexExtractor and use a suitable template to re-create the desired text with "&" instead of "&" 3) Use the RegexFunction to remove the "amp;" suffix - or equally, to replace "&" by "&". > > greetings and thanks > > jens v. karstedt > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

