Re: help needed - Regular Expressions

2009-10-01 Thread sebb
> > //sele...@name="A"]/option/@value > > > > > > > > > > > > > > > That's a good news... I was wondering why should we use regular > expressions > > > for extracting data from an XML document... of course as far as it&#

Re: help needed - Regular Expressions

2009-10-01 Thread Silvester Pozarnik
sebb skrev: On 22/09/2009, Barnabas Davoti wrote: Noel O'Brien wrote: Why not use the following XPath extractor instead: //sele...@name="A"]/option/@value That's a good news... I was wondering why should we use regular expressions for extracting data

Re: help needed - Regular Expressions

2009-09-22 Thread Deepak Shetty
t; > That's a good news... I was wondering why should we use regular expressions > for extracting data from an XML document... of course as far as it's XML > (XHTML), but anyway in this case it's proper XML. > > I guess xpath is not an option if the page is html (so

Re: help needed - Regular Expressions

2009-09-22 Thread sebb
On 22/09/2009, Barnabas Davoti wrote: > Noel O'Brien wrote: > > > Why not use the following XPath extractor instead: > > //sele...@name="A"]/option/@value > > > > That's a good news... I was wondering why should we use regular expressions >

Re: help needed - Regular Expressions

2009-09-22 Thread Barnabas Davoti
Noel O'Brien wrote: Why not use the following XPath extractor instead: //sele...@name="A"]/option/@value That's a good news... I was wondering why should we use regular expressions for extracting data from an XML document... of course as far as it's XML (XHTML), but

Re: help needed - Regular Expressions

2009-09-22 Thread Noel O'Brien
Why not use the following XPath extractor instead: //sele...@name="A"]/option/@value Regards, Noel - "Silvester Pozarnik" wrote: > Hi all, > > I am stuck with the following problem. Given the response with data > containing: > > > none > first > second > > > > none > fi

help needed - Regular Expressions

2009-09-22 Thread Silvester Pozarnik
Hi all, I am stuck with the following problem. Given the response with data containing: none first second none first second what is a way of getting JMeter to loop thorough values of options for the "block A" _only_? I need values "", "01" and "02" only to loop thorough. I can

Re: Regular Expressions

2009-04-17 Thread Jannetta Steyn
Hi Ronan the %26 encoding worked. Thanks Noel, I have tried & before. It doesn't work. 2009/4/17 Noel O'Brien > Try replacing > > & > > with > > & > > Regards, > Noel > > On Friday 17 April 2009 14:24:43 Jannetta Steyn wrote: > > Does anyone perhaps have any advice with regards to using the amp

Re: Regular Expressions

2009-04-17 Thread Noel O'Brien
Try replacing & with & Regards, Noel On Friday 17 April 2009 14:24:43 Jannetta Steyn wrote: > Does anyone perhaps have any advice with regards to using the ampersand > character in a textarea? At the moment the ampersand is being interpreted > by the server as another parameter. I'll use the

Re: Regular Expressions

2009-04-17 Thread Ronan Klyne
Jannetta Steyn wrote: > Does anyone perhaps have any advice with regards to using the ampersand > character in a textarea? At the moment the ampersand is being interpreted by > the server as another parameter. I'll use the beanshell to replace the > ampersand, but what do I replace it with? It nee

Re: Regular Expressions

2009-04-17 Thread Jannetta Steyn
Does anyone perhaps have any advice with regards to using the ampersand character in a textarea? At the moment the ampersand is being interpreted by the server as another parameter. I'll use the beanshell to replace the ampersand, but what do I replace it with? With regards to System.out.println,

Re: Regular Expressions

2009-04-17 Thread sebb
On 17/04/2009, Noel O'Brien wrote: > Hi Jannetta, > > Happy to help :) > > I'm not sure whether it's a beanshell thing or a JMeter thing, but > System.out.println doesn't seem to print to standard out for me. I use the Works for me - and print() just calls it anyway. Both appear in the consol

Re: Regular Expressions

2009-04-17 Thread Noel O'Brien
Hi Jannetta, Happy to help :) I'm not sure whether it's a beanshell thing or a JMeter thing, but System.out.println doesn't seem to print to standard out for me. I use the print() function instead for stdout, or log.info() for writing to jmeter.log Regards, Noel On Friday 17 April 2009 10:36:

Re: Regular Expressions

2009-04-17 Thread Jannetta Steyn
Hi Noel The beanshell worked. Thank you very much for the suggestion. It was much simpler than your example though. This is all I had to do: String desc = vars.get("DESCRIPTION"); desc = desc.replaceAll("","\r\n\r\n"); vars.put("DESCRIPTION",desc); I was just wondering. Where does the output of

Re: Regular Expressions

2009-04-16 Thread Noel O'Brien
I have a beanshell pre processor script that I use to replace values in parameters of a HTTP Request, maybe you can modify it to do a find and replace on the placeholders: import org.apache.jmeter.protocol.http.util.HTTPArgument;

Re: Regular Expressions

2009-04-15 Thread Jannetta Steyn
Yes the data of one of the fields I want to submit is a textarea which sometimes contains line breaks. I have two ways of retrieving the data. The first is as I mentioned before from the CSV file, so it is in a variable. Because the CSV data config can't read line breaks, I replaced the line break

Re: Regular Expressions

2009-04-15 Thread Noel O'Brien
Do you need to have line breaks in your data? Is the data in question sent as a parameter or in the request body? Regards, Noel On Wednesday 15 April 2009 17:05:47 Jannetta Steyn wrote: > Hi Folks > > I posted this message earlier today but it didn't seem to go through. > Apologies if it now ends

Regular Expressions

2009-04-15 Thread Jannetta Steyn
Hi Folks I posted this message earlier today but it didn't seem to go through. Apologies if it now ends up having gone through twice. I wonder if someone can perhaps help. I am using JMeter to test a web site which consist of forms submitted by POST. I read data from a CSV file and then submit th

Regular Expressions

2009-04-15 Thread Jannetta Steyn
Hi Folks I wonder if someone can perhaps help. I am using JMeter to test a web site which consist of forms submitted by POST. I read data from a CSV file and then submit the information using HTTP Request. The problem I have is with the CSV Data Set Config not being able to read data with line bre

Re: Please help on regular expressions

2009-01-08 Thread Rout-S
habet and numbers >> >> Thanks! >> Rout-S >> >> >> >> - >> T & R >> RoutS > > > -- > Ronan Klyne > Business Collaborator Developer > Tel: +44 01189 028518 > ronan.kl...@groupbc.com > www.groupbc.com > >

RE: Please help on regular expressions

2009-01-08 Thread Rout-S
gt; > input type="checkbox" name="seleccionado" value="(\d+)" > > Where \d says a digit, and + says previous class (the digit) repeat once > or more. The ( ) mean grab what's inbetween as the match. > > -Original Message- > From: Ro

Re: Please help on regular expressions

2009-01-08 Thread Ronan Klyne
There was an almost identical message to this list yesterday, which I gave a solution to: http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-user/200901.mbox/ajax/%3c4964be40.4000...@groupbc.com%3e I would recommend following the link Steve Kapinos gave you, and adapting this solution. Ro

RE: Please help on regular expressions

2009-01-08 Thread Steve Kapinos
.@gmail.com] Sent: Thursday, January 08, 2009 3:48 AM To: jmeter-user@jakarta.apache.org Subject: Please help on regular expressions Hello Folks, In JMeter can you capture some data from response and pass it to request followed by. P

Please help on regular expressions

2009-01-08 Thread RoutS
numbers Thanks! Rout-S - T & R RoutS -- View this message in context: http://www.nabble.com/Please-help-on-regular-expressions-tp21347885p21347885.html Sent from the JMeter - User mailing list archive at Nabble.com. -

Re: Regular expressions-help needed

2008-11-14 Thread sebb
ould use an RE which matches all the entries, set the > > match count to -1, and then use the match count. > > > >> Thnx in advance > >> Venkadesh:-) > >> > >> -- > >> View this message in context: > >> > http://www.nabble

Re: Regular expressions-help needed

2008-11-14 Thread wenqatesh
> only the last of a series of matches, which is what appears to be > needed here. > > However, you could use an RE which matches all the entries, set the > match count to -1, and then use the match count. > >> Thnx in advance >> Venkadesh:-) >> >

Re: Regular expressions-help needed

2008-11-01 Thread sebb
n use the match count. > Thnx in advance > Venkadesh:-) > > -- > View this message in context: > http://www.nabble.com/Regular-expressions-help-needed-tp20245607p20245607.html > > Sent from the JMeter - User mailing list archive at Nabble.com. > > >

Regular expressions-help needed

2008-10-30 Thread wenqatesh
message in context: http://www.nabble.com/Regular-expressions-help-needed-tp20245607p20245607.html Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Regular expressions-help needed

2008-10-30 Thread wenqatesh
://www.nabble.com/Regular-expressions-help-needed-tp20242212p20242212.html Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Regular expressions-help needed

2008-10-30 Thread wenqatesh
Hi Please help me out in building a regular expression for extracting the value(34) in the source code below ( 1 / 34 ) Thanks Venkadesh -- View this message in context: http://www.nabble.com/Regular-expressions-help-needed-tp20242140p20242140.html Sent from the JMeter - User mailing list

Re: regular expressions

2008-08-10 Thread sebb
gainst regular > expression fail. Does anybody know why such behaviour can appear? > It's a different server so perhaps the generated HTML is subtly different - double-check the Regex. > Best regards, > Elena. > > -- > View this message in context: > http://www.

regular expressions

2008-08-05 Thread ElSe
this message in context: http://www.nabble.com/regular-expressions-tp18843957p18843957.html Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Regular expressions with embedded newlines and tabs

2007-11-15 Thread sebb
On 15/11/2007, Mark McWhinney <[EMAIL PROTECTED]> wrote: > I am trying to set up a regular expression extractor with a regular > expression that contains a newline (CR-LF) and a tab character. How do I do > that. \n is not the same as CR-LF. > This is the HTML > >MarketCap >$3,51

RE: Regular expressions with embedded newlines and tabs

2007-11-15 Thread Mark McWhinney
Works great. Thanks! -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 2:04 PM To: JMeter Users List Subject: Re: Regular expressions with embedded newlines and tabs On 15/11/2007, Mark McWhinney <[EMAIL PROTECTED]> wrote: > I am trying

Regular expressions with embedded newlines and tabs

2007-11-15 Thread Mark McWhinney
I am trying to set up a regular expression extractor with a regular expression that contains a newline (CR-LF) and a tab character. How do I do that. This is the HTML MarketCap $3,518.21M I tried the following with \n\t and variations on it, but nothing worked. MarketCap\n\t([

Re: Problem with Regular Expressions usage in Bean Shell Post Processor

2007-09-05 Thread sebb
y next question is more an additional one to my > former: I want to get some information from my recieved HTML-File which i > will get as response. > I tried it with Regular Expressions, but it doesn't work. My code looks lik

Problem with Regular Expressions usage in Bean Shell Post Processor

2007-09-05 Thread Sebastian Straus
om my recieved HTML-File which i will get as response. I tried it with Regular Expressions, but it doesn't work. My code looks like this: -- import java.util.regex.*; import java.lang.String.*;

RE: Writing regular expressions to log file

2007-06-11 Thread Jason Hane
Great!! This works perfectly. Thank you for your help. -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 5:28 PM To: JMeter Users List Subject: Re: Writing regular expressions to log file One way would be to use the Java Request to return the value

Re: Writing regular expressions to log file

2007-06-09 Thread sebb
This would generate a sample in the main test output. To avoid this, use a BeanShell Post-Processor or Listener. Also if there are a lot of samples, the open/close of the file might become significant. At present the BeanShell test elements don't support testStopped() etc hooks, so it's not easy

Re: Writing regular expressions to log file

2007-06-09 Thread chris
you could use a beanshellsampler, and retrieve the value of the regex-extractor and write it to file, e.g.: String value = vars.get("regex_reference_name"); try { BufferedWriter out = new BufferedWriter(new FileWriter("logfile.log", true)); out.write(value + "\n"); out.close(); } catch

Re: Writing regular expressions to log file

2007-06-08 Thread sebb
One way would be to use the Java Request to return the value, and then add a listener to it to save the value. S. On 08/06/07, Jason Hane <[EMAIL PROTECTED]> wrote: I set up some tests in JMeter and they work beautifully. My only requirement is to extract certain text from the web pages using r

Writing regular expressions to log file

2007-06-08 Thread Jason Hane
I set up some tests in JMeter and they work beautifully. My only requirement is to extract certain text from the web pages using regular expression extractors and writing them to a log file. I haven't been able to find how to do this. Is there a way to write your regex's to a log file without a

RE: Regular expressions help:

2006-12-20 Thread Labudu Gopanna
Thanks for reply, I want to use regular expressions for date field. Can u send an example for this? -Original Message- From: Kyle Schmitt [mailto:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 1:19 AM To: JMeter Users List Subject: Re: Regular expressions help: Give a bit

Re: Regular expressions help:

2006-12-20 Thread Kyle Schmitt
Give a bit more info about what you need to extract. I've just wrestled through a few Regex issues myself thanks to this list and the jakarta ORO demonstration applet (http://jakarta.apache.org/oro/demo.html). ORO is what jmeter uses for regexes, so that applet is a good way to see exactly what

Re: Regular expressions help:

2006-12-19 Thread naveen sharma
ive pointer to you. about Reg EX. ~Naveen - Original Message From: Labudu Gopanna <[EMAIL PROTECTED]> To: JMeter Users List Sent: Wednesday, December 20, 2006 11:41:03 AM Subject: Regular expressions help: Hi all, I want to use regular expressions for my jmeter test plan, H

Regular expressions help:

2006-12-19 Thread Labudu Gopanna
Hi all, I want to use regular expressions for my jmeter test plan, How to use Regular expressions? Can you help? From Gopal "Legal Disclaimer: This electronic message and all contents contain information from Cybage Software Private Limited which may be privileged, confidentia

Re: Regular expressions sometimes not getting substituted

2006-09-15 Thread sebb
On 15/09/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Thanks Sebb for your response. I have put my answers in colored text for your perusal. Can you please have a look into them and clarify my doubts? I'm afraid the colour does not show up here. Best to use prefixing, as I did... > Guys,

Re: Regular expressions sometimes not getting substituted

2006-09-14 Thread Choudhury
Thanks Sebb for your response. I have put my answers in colored text for your perusal. Can you please have a look into them and clarify my doubts? > Guys, > I want to know a basic Jmeter thing. I have parameterized my > requests using Regular expression extractors meaning I am picking

RE: Regular expressions sometimes not getting substituted

2006-09-14 Thread Choudhury
Solutions - Results Count "Brian Swackhamer" <[EMAIL PROTECTED]> 09/14/2006 08:50 PM Please respond to "JMeter Users List" To "JMeter Users List" cc Subject RE: Regular expressions sometimes not getting substituted What is happening most likely is that

Re: Regular expressions sometimes not getting substituted

2006-09-14 Thread sebb
On 14/09/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Guys, I want to know a basic Jmeter thing. I have parameterized my requests using Regular expression extractors meaning I am picking up values from earlier responses and then substituting them on subsequent requests. When I am ru

RE: Regular expressions sometimes not getting substituted

2006-09-14 Thread Brian Swackhamer
14, 2006 11:12 AM To: jmeter-user@jakarta.apache.org Subject: Regular expressions sometimes not getting substituted Guys, I want to know a basic Jmeter thing. I have parameterized my requests using Regular expression extractors meaning I am picking up values from earlier responses and

Regular expressions sometimes not getting substituted

2006-09-14 Thread Choudhury
Guys, I want to know a basic Jmeter thing. I have parameterized my requests using Regular expression extractors meaning I am picking up values from earlier responses and then substituting them on subsequent requests. When I am running a few threads the parameter values are getting re

Re: How to use Regular Expressions in JMeter

2006-08-23 Thread sebb
2006 8:15 PM To: JMeter Users List Subject: Re: How to use Regular Expressions in JMeter The regular expressions work just as well in 2.2, and there are a lot of other fixes compared with 2.1 which is rather old... On 23/08/06, Golan Roy <[EMAIL PROTECTED]> wrote: > I found that regexp

RE: How to use Regular Expressions in JMeter

2006-08-23 Thread Golan Roy
I have a test plan with http request and the same regexp worked in 2.1 but not in 2.2 Any idea what could be the case? -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 8:15 PM To: JMeter Users List Subject: Re: How to use Regular Expressions in

Re: How to use Regular Expressions in JMeter

2006-08-23 Thread sebb
The regular expressions work just as well in 2.2, and there are a lot of other fixes compared with 2.1 which is rather old... On 23/08/06, Golan Roy <[EMAIL PROTECTED]> wrote: I found that regexp work in jmeter version 2.1 . I suggest you install 2.1 and use regexp like you have in hel

RE: How to use Regular Expressions in JMeter

2006-08-23 Thread Golan Roy
I found that regexp work in jmeter version 2.1 . I suggest you install 2.1 and use regexp like you have in help file. It worked for me. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

RE: How to use Regular Expressions in JMeter

2006-08-23 Thread Aycock, Glenn W. \(JSC-IS\)[TES]
1) Please advice me as to how to use regular expressions in JMeter. See: http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Reg ular_Expression_Extractor and http://jakarta.apache.org/jmeter/usermanual/regular_expressions.html 2) Also, i want to know the procedure used to

How to use Regular Expressions in JMeter

2006-08-23 Thread Ashish Sethi
Hi, Please advice me as to how to use regular expressions in JMeter. Also, i want to know the procedure used to load loginID (s) into a script from a source file. I am creating functional test scripts using JMeter v2.2. Detailed and relevant response is highly apppreciated

Recalling regular expressions

2006-07-09 Thread Josh Feldman
Did something change regarding calling regular expressions in the new version of Jmeter, some of my old scripts are having issues recalling variables I use a regular expression to capture a name from a webpage I then want to use this name as a part of the path in my next request The

AW: want to list all foreign links of a page - or IF Controller and Regular Expressions

2005-11-25 Thread Baumgartner, Christian
or IF Controller and Regular Expressions On 22/11/05, Baumgartner, Christian <[EMAIL PROTECTED]> wrote: > i want to write out those links, that doesn't belong to specific pool of > given links. > > the pool contains the following links (by example): > http://jamaica.a

Re: want to list all foreign links of a page - or IF Controller and Regular Expressions

2005-11-22 Thread sebb
On 22/11/05, Baumgartner, Christian <[EMAIL PROTECTED]> wrote: > i want to write out those links, that doesn't belong to specific pool of > given links. > > the pool contains the following links (by example): > http://jamaica.at/test1.htm > http://jamaica.at/servlet34/contextlayout,5/ > http://jam

AW: want to list all foreign links of a page - or IF Controller and Regular Expressions

2005-11-22 Thread Baumgartner, Christian
List Betreff: Re: want to list all foreign links of a page - or IF Controller and Regular Expressions What are you trying to do? S. On 22/11/05, Baumgartner, Christian <[EMAIL PROTECTED]> wrote: > following szenario: > > i have a html page that contains usually these links: link1, link2

Re: want to list all foreign links of a page - or IF Controller and Regular Expressions

2005-11-22 Thread sebb
ks on the page that > are valid, with a special sample: link__something > the ID changes from one link to another. when i go further like the > example above i'll grow old and die before i will finish *gg* > > is there a solution to use regul

want to list all foreign links of a page - or IF Controller and Regular Expressions

2005-11-22 Thread Baumgartner, Christian
h *gg* is there a solution to use regular expressions in the if controller? or has someone another idea? nice regards Christian

Re: Respons Assertion vs Regular expressions

2005-09-22 Thread sebb
Perl has the following feature: \Q quote (disable) pattern metacharacters till \E ORO may support this too - try enclosing the entire pattern in \Q and \E. S. On 21/09/05, Michael Stover <[EMAIL PROTECTED]> wrote: > Unfortunately, at this time, there is no function or other tool to quot

Re: Respons Assertion vs Regular expressions

2005-09-21 Thread Michael Stover
Unfortunately, at this time, there is no function or other tool to quote all the meta characters of a regular expression. You'll have to escape all the special characters manually. -Mike On Wed, 2005-09-21 at 09:46 +0200, Noureddine BEKRAR wrote: > Hi all, > > Like you know, in the "Response as

Respons Assertion vs Regular expressions

2005-09-21 Thread Noureddine BEKRAR
Hi all, Like you know, in the "Response assertion", the "patterns to test" are sensitive to special caracters like "?", this kind of characters are considered like a part of regular expression. My problem is that i have many spécial characters in my text to control, and i want to know if

RE: About regular Expressions

2005-04-13 Thread Sander Stevens
ect: About regular Expressions Hi Everybody I´m trying to find a regular expressions for : News Trying to got "/!E1LnPrsdGf2fFN" in a regular Expression preprocesor but I haven´t find any match expression yet. Is there any way to specify this: I tried News but it doesnt seem to wo

Re: About regular Expressions

2005-04-12 Thread sebb
On 4/12/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi Everybody > > I´m trying to find a regular expressions for : > > News > > Trying to got "/!E1LnPrsdGf2fFN" in a regular Expression preprocesor > but I haven´t find any match expression yet.

About regular Expressions

2005-04-12 Thread maherrera
Hi Everybody I´m trying to find a regular expressions for : News Trying to got "/!E1LnPrsdGf2fFN" in a regular Expression preprocesor but I haven´t find any match expression yet. Is there any way to specify this: I tried News but it doesnt seem to work. Any ideas? Best Regar

RE: use of regular expressions in Responce Assertion

2005-04-05 Thread Dora B Kampalli
Return Receipt Your RE: use of regular expressions in Responce Assertion document

RE: use of regular expressions in Responce Assertion

2005-04-05 Thread rafael . medina
Return Receipt Your RE: use of regular expressions in Responce Assertion document

RE: use of regular expressions in Responce Assertion

2005-04-05 Thread Grigoryan, Lilit
ch as many times as HopeWiser appears in the response. Please, advise. Best, Lilit -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 7:23 PM To: JMeter Users List Subject: Re: use of regular expressions in Responce Assertion This was discussed on this l

Re: use of regular expressions in Responce Assertion

2005-04-04 Thread sebb
This was discussed on this list a few months back. I think the suggested solution was to use one Response Assertion to match 2 occurences, and another to NOT match 3. S. On Apr 4, 2005 10:22 AM, Grigoryan, Lilit <[EMAIL PROTECTED]> wrote: > Hi, > > Please can someone help me to define a regular

use of regular expressions in Responce Assertion

2005-04-04 Thread rafael . medina
Return Receipt Your use of regular expressions in Responce Assertion document

use of regular expressions in Responce Assertion

2005-04-04 Thread Dora B Kampalli
Return Receipt Your use of regular expressions in Responce Assertion document

use of regular expressions in Responce Assertion

2005-04-04 Thread Grigoryan, Lilit
Hi, Please can someone help me to define a regular expression that will be used as a pattern string in Response assertion. Test build-in from SOAP/XML-RPC Requests and a sample response looks like: ___ http://schemas.xmlsoap.org/soap/envelope/

RE: perl and regular expressions

2004-12-07 Thread Liao, Avian
, what would be a example for the script? Avian Liao I smile because of all your help, hahaha! -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 2:48 AM To: JMeter Users List Subject: Re: perl and regular expressions On Mon, 6 Dec 2004 18:20:38 -0500

RE: The Regular Expressions Extractor problem

2004-12-07 Thread Liao, Avian
al, so that is why I use same regular expression in both page, and just name the regular expression of x page "_processid2", since I need to serperate these two values. That is what I thought. Hope it will help clear up. Thanks! AL -Original Message- From: Kyle McAbee [mailto:[E

RE: question of Regular Expressions

2004-12-07 Thread Liao, Avian
all good, but just don't know why it did not work in my case), I end with using my old regular expressions, except reuse my reference name that I use in the first page. Reference Name: _processid Regular Expression: _processid = (\w*-\w*-\w*-\w*-\w*) Template:$1$

RE: question of Regular Expressions

2004-12-07 Thread Kyle McAbee
2004 4:47 PM To: Jmeter Question (E-mail) Subject: question of Regular Expressions Hi, I try to use regular Expression Extractor to catch the following: "3FFBE12D-AA29-B37B-4612-8173B7C2CCE7" and I use the Regular Expression Extractor: Reference Name: AAA Regular Expression: AAA =

Re: question of Regular Expressions

2004-12-07 Thread sebb
ame: AAA > Regular Expression: AAA = (\w*-\w*-\w*-\w*-\w*) This looks wrong. Does your data really contain strings like: "AAA = 3FFBE12D-AA29-B37B-4612-8173B7C2CCE7" Surely you need (\w+-\w+-\w+-\w+-\w+) or perhaps (\w{8}-\w{4}-\w{4}-\w{4}-\w{8}) The JMeter Wiki has a section

Re: perl and regular expressions

2004-12-07 Thread sebb
On Mon, 6 Dec 2004 18:20:38 -0500, Liao, Avian <[EMAIL PROTECTED]> wrote: > Hi, All, > > It's me again. Can I write regular expressions in Perl? If I can, where > should I put it? Beanshell sampler? JMeter uses Apache ORO for processing regular expressions - see http://

perl and regular expressions

2004-12-06 Thread Liao, Avian
Hi, All, It's me again. Can I write regular expressions in Perl? If I can, where should I put it? Beanshell sampler? Avian Liao Software Programmer 813-864-8198 [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROT

question of Regular Expressions

2004-12-06 Thread Liao, Avian
, if there is only one set of this data in the page, my extractor is working fine, and I can catch all the value.However, if I have multiple same set of data in one page, the Regular Expressions Extractor return nothing. When I am said "same set of data", I mean there are couple of same

Re: regular expressions

2004-11-22 Thread sebb
e Akoulov wrote: > > > Hi Andrew, > > > >> what is the best resource to read, for a complete newbie, on the > >> subject > > of regular expressions? > > > > Try this one: http://regular-expression.info/ > > > > > > Kind regards

Re: regular expressions

2004-11-22 Thread Andrew M
Alexandre, thanks for that information. regards Andrew On 22 Nov 2004, at 03:24, Alexandre Akoulov wrote: Hi Andrew, what is the best resource to read, for a complete newbie, on the subject of regular expressions? Try this one: http://regular-expression.info/ Kind regards, Al

RE: regular expressions

2004-11-21 Thread Alexandre Akoulov
Hi Andrew, > what is the best resource to read, for a complete newbie, on the subject of regular expressions? Try this one: http://regular-expression.info/ Kind regards, Al. - To unsubscribe, e-mail: [EMAIL PROTECTED]

regular expressions

2004-11-21 Thread Andrew M
Hi, can anyone tell me whether jmeter uses standard regular expressions or jmeter varient of regular expressions? And secondly, what is the best resource to read, for a complete newbie, on the subject of regular expressions? regards Andrew

RE: Regular expressions for some threads are calculated incorrectly

2004-05-27 Thread Vladimir Tsygankov
We forgot to point out that problem takes place in both GUI and non-GUI modes. Thanks > -Original Message- > From: Vladimir Tsygankov [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 26, 2004 7:08 PM > To: 'JMeter Users List' > Subject: RE: Regular express

RE: Regular expressions for some threads are calculated incorrectly

2004-05-26 Thread Vladimir Tsygankov
day, March 10, 2004 9:59 PM > To: 'JMeter Users List' > Subject: RE: Regular expressions for some threads are calculated incorrect > ly > > Remember that .* is greedy, so your regex could match more than you > expect. > > It would be safer to use value="(.*

RE: Regular expressions for some threads are calculated incorrect ly

2004-03-11 Thread Vladimir Tsygankov
Thanks for the advice, I tried safer "(.*?)" but that hasn't helped as expected. > -Original Message- > From: BAZLEY, Sebastian [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 10, 2004 9:59 PM > To: 'JMeter Users List' > Subject: RE: Regular exp

RE: Regular expressions for some threads are calculated incorrect ly

2004-03-10 Thread BAZLEY, Sebastian
ation that hides a timing bug S. -Original Message- From: Vladimir Tsygankov [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 17:30 To: 'JMeter Users List' Subject: Regular expressions for some threads are calculated incorrectly Hello, colleagues, We think the next regular

Regular expressions for some threads are calculated incorrectly

2004-03-10 Thread Vladimir Tsygankov
Hello, colleagues, We think the next regular expression function ${__regexFunction(File,$1$,${__threadNum},,,refContainerID)} for various threads from time to time works incorrectly in non-GUI JMeter mode. It misses results for threads. We attached log files for cases of correct (Thread32-server a

Re: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-13 Thread Jordi Salvat i Alabart
Hi Shawn, did my version or the nightly build solve this issue? Did you get past this roadblock? I want to make sure this issue is completely cleared before we do the next release -- which should be pretty soon. -- Salut, Jordi. Jordi Salvat i Alabart wrote: Looks like I made the change too la

Re: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-11 Thread Jordi Salvat i Alabart
esn't calculate regular expressions for some threads This is fixed now. HTTPSampler now works in remote mode. My apologies for not having tested that case. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

RE: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-10 Thread Shawn Elliott
ava:278) > at java.lang.Thread.run(Thread.java:536) -Original Message- From: Jordi Salvat i Alabart [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 3:17 PM To: JMeter Users List Subject: Re: JMeter from time to time doesn't calculate regular expressions for some threads

RE: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-10 Thread Shawn Elliott
Thank you, will pick up tonight's build and give it a whirl. -Original Message- From: Jordi Salvat i Alabart [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 3:17 PM To: JMeter Users List Subject: Re: JMeter from time to time doesn't calculate regular expression

Re: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-10 Thread Jordi Salvat i Alabart
: JMeter from time to time doesn't calculate regular expressions for some threads Strange. I just downloaded it (jakarta-jmeter-20040209) and tried: it works well both with jdk 1.3.1_07 and 1.4.2_02 (on Debian Unstable, but I don't believe this matters to this issue). Q: Did you also do

Re: JMeter from time to time doesn't calculate regular expressions for some threads

2004-02-10 Thread Jordi Salvat i Alabart
time to time doesn't calculate regular expressions for some threads Strange. I just downloaded it (jakarta-jmeter-20040209) and tried: it works well both with jdk 1.3.1_07 and 1.4.2_02 (on Debian Unstable, but I don't believe this matters to this issue). Q: Did you also download th

  1   2   >