You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by Nithya Prakash <ni...@gmail.com> on 2010/06/12 04:11:16 UTC

Using Regular Expression Extractor to extract the "id"

Hi

I'm using Jmeter since one month...In learning process.... the scenario is
like this..... I login as Org admin and create an user......As soon i create
an User in return value it creates an User ID which i'll be using it for
further HTTP requests.... The problem am facing is i'm unable to fetch the
"syntax" to be used in the regular expression extractor....

-----
http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
-----

The above url is the path which is coming while i create the user..... The
"id=30" is the Org id......... Now in order to extract the id i use a
regular expression extractor. I make the following settings.....
                            Response Field to check : URL
                            Regular Expression         : (\d+)

Its not working..... Can anyone tell me a possible solution please ??

Regards
-- 
Nithya Prakash.L
nithyaprakash86@gmail.com
+919623320453

Re: Using Regular Expression Extractor to extract the "id"

Posted by Deepak Shetty <sh...@gmail.com>.
>on the other hand value=([^"]*)" stops
As expected. You have asked for value= followed by zero or more characters
which arent quotes followed by ". In which case the string satisfying this
is value=" and your matching brackets capture 0 characters

The reason I changed the \d was because that regex assumes the format of the
id, whereas it is guaranteed that URL parameters will be separated by '&'
(unless its the last one) , so the latter form is less fragile

regards
deepak


On Sat, Jun 12, 2010 at 10:45 AM, Adrian Speteanu <as...@gmail.com>wrote:

> hi,
>
> @deepak: the [^] regex doesn't seem to work for me as you have mentioned it
> (i'm on a windows station).
>
> [ details ] i have this in the text response:
>  name="lt" value=
>
> "_c12F59EBD-2BE6-A12A-B0B8-BCA9A6F71683_k1D7CB867-93BB-4F79-F306-4A61835AB21C"
> (which is the ticket required by CAS for login - a Single Sign On
>  solution)
>
> this works:
> expression:  "lt" value="([^"]+)"
>
> (on the other hand value=([^"]*)" stops at the first " and value=([^"]+)"
> returns error - notice that i have not included the first " in the pattern
> to remember)
>
> that should work for nithya as well. considering she is extrancting
> something from the url which is a short url, does it matter that she uses
> something wich extracts all numbers? (how many numbers can there be in a
> url?).<< id=(\d+) >> is the simplest to understand regex in that situation.
>
> On Sat, Jun 12, 2010 at 8:39 AM, Deepak Shetty <sh...@gmail.com> wrote:
>
> > do you have follow redirects or redirect automatically (change to follow
> > redirects if not already there)?
> > Also what are the values you have specified for the other fields
> > regEx = id=([^&]*)&
> > Template = $1$
> > Match NO = 1
> > Default = NOTFOUND
> >
> > Also have you tried putting a debug sampler + view results tree listener
> > and
> > seen what you are extracting (Im assuming from your mail that the URL you
> > posted the data too finally redirected to this URL)? Did you verify using
> > view results tree listener that you are indeed being redirected to this
> URL
> > (otherwise your ADD might have failed)?
> >
> > regards
> > deepak
> >
> >
> >
> > On Fri, Jun 11, 2010 at 10:32 PM, Nithya Prakash
> > <ni...@gmail.com>wrote:
> >
> > > Thanks Deepak
> > >
> > > Yea its the URL which is been redirected..... am actually using HTTP
> fox
> > to
> > > record the parameters and the checking the values in HTML format...
> able
> > to
> > > get the id's but am not able to fetch the exact expression which is to
> be
> > > used in regular expression extractor..... i'll try out to find where am
> > > going wrong... meanwhile is there any possible solution for this issue
> > > please let me know...
> > >
> > >
> > >
> > > On Sat, Jun 12, 2010 at 8:15 AM, Deepak Shetty <sh...@gmail.com>
> > wrote:
> > >
> > > > >The above url is the path which is coming while i create the user..
> > > > What do you mean by this statement? Does your application redirect to
> > > this
> > > > URL?  Or is this part of the content in the response? Your response
> > field
> > > > to
> > > > check is probably wrong since you are checking the URL.
> > > > Second your expression is too broad. it will capture any number ,
> > > something
> > > > like id=([^&]*)& . Also you can use a debug sampler to see what
> values
> > > are
> > > > getting extracted if at all.
> > > >
> > > >
> > > > On Fri, Jun 11, 2010 at 7:11 PM, Nithya Prakash
> > > > <ni...@gmail.com>wrote:
> > > >
> > > > > Hi
> > > > >
> > > > > I'm using Jmeter since one month...In learning process.... the
> > scenario
> > > > is
> > > > > like this..... I login as Org admin and create an user......As soon
> i
> > > > > create
> > > > > an User in return value it creates an User ID which i'll be using
> it
> > > for
> > > > > further HTTP requests.... The problem am facing is i'm unable to
> > fetch
> > > > the
> > > > > "syntax" to be used in the regular expression extractor....
> > > > >
> > > > > -----
> > > > > http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> > > > > &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode<
> > > >
> > >
> >
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30%0A&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
> > > > >
> > > > > -----
> > > > >
> > > > > The above url is the path which is coming while i create the
> > user.....
> > > > The
> > > > > "id=30" is the Org id......... Now in order to extract the id i use
> a
> > > > > regular expression extractor. I make the following settings.....
> > > > >                            Response Field to check : URL
> > > > >                            Regular Expression         : (\d+)
> > > > >
> > > > > Its not working..... Can anyone tell me a possible solution please
> ??
> > > > >
> > > > > Regards
> > > > > --
> > > > > Nithya Prakash.L
> > > > > nithyaprakash86@gmail.com
> > > > > +919623320453
> > > > >
> > > >
> > >
> >
>

Re: Using Regular Expression Extractor to extract the "id"

Posted by Adrian Speteanu <as...@gmail.com>.
hi,

@deepak: the [^] regex doesn't seem to work for me as you have mentioned it
(i'm on a windows station).

[ details ] i have this in the text response:
 name="lt" value=
"_c12F59EBD-2BE6-A12A-B0B8-BCA9A6F71683_k1D7CB867-93BB-4F79-F306-4A61835AB21C"
(which is the ticket required by CAS for login - a Single Sign On  solution)

this works:
expression:  "lt" value="([^"]+)"

(on the other hand value=([^"]*)" stops at the first " and value=([^"]+)"
returns error - notice that i have not included the first " in the pattern
to remember)

that should work for nithya as well. considering she is extrancting
something from the url which is a short url, does it matter that she uses
something wich extracts all numbers? (how many numbers can there be in a
url?).<< id=(\d+) >> is the simplest to understand regex in that situation.

On Sat, Jun 12, 2010 at 8:39 AM, Deepak Shetty <sh...@gmail.com> wrote:

> do you have follow redirects or redirect automatically (change to follow
> redirects if not already there)?
> Also what are the values you have specified for the other fields
> regEx = id=([^&]*)&
> Template = $1$
> Match NO = 1
> Default = NOTFOUND
>
> Also have you tried putting a debug sampler + view results tree listener
> and
> seen what you are extracting (Im assuming from your mail that the URL you
> posted the data too finally redirected to this URL)? Did you verify using
> view results tree listener that you are indeed being redirected to this URL
> (otherwise your ADD might have failed)?
>
> regards
> deepak
>
>
>
> On Fri, Jun 11, 2010 at 10:32 PM, Nithya Prakash
> <ni...@gmail.com>wrote:
>
> > Thanks Deepak
> >
> > Yea its the URL which is been redirected..... am actually using HTTP fox
> to
> > record the parameters and the checking the values in HTML format... able
> to
> > get the id's but am not able to fetch the exact expression which is to be
> > used in regular expression extractor..... i'll try out to find where am
> > going wrong... meanwhile is there any possible solution for this issue
> > please let me know...
> >
> >
> >
> > On Sat, Jun 12, 2010 at 8:15 AM, Deepak Shetty <sh...@gmail.com>
> wrote:
> >
> > > >The above url is the path which is coming while i create the user..
> > > What do you mean by this statement? Does your application redirect to
> > this
> > > URL?  Or is this part of the content in the response? Your response
> field
> > > to
> > > check is probably wrong since you are checking the URL.
> > > Second your expression is too broad. it will capture any number ,
> > something
> > > like id=([^&]*)& . Also you can use a debug sampler to see what values
> > are
> > > getting extracted if at all.
> > >
> > >
> > > On Fri, Jun 11, 2010 at 7:11 PM, Nithya Prakash
> > > <ni...@gmail.com>wrote:
> > >
> > > > Hi
> > > >
> > > > I'm using Jmeter since one month...In learning process.... the
> scenario
> > > is
> > > > like this..... I login as Org admin and create an user......As soon i
> > > > create
> > > > an User in return value it creates an User ID which i'll be using it
> > for
> > > > further HTTP requests.... The problem am facing is i'm unable to
> fetch
> > > the
> > > > "syntax" to be used in the regular expression extractor....
> > > >
> > > > -----
> > > > http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> > > > &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode<
> > >
> >
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30%0A&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
> > > >
> > > > -----
> > > >
> > > > The above url is the path which is coming while i create the
> user.....
> > > The
> > > > "id=30" is the Org id......... Now in order to extract the id i use a
> > > > regular expression extractor. I make the following settings.....
> > > >                            Response Field to check : URL
> > > >                            Regular Expression         : (\d+)
> > > >
> > > > Its not working..... Can anyone tell me a possible solution please ??
> > > >
> > > > Regards
> > > > --
> > > > Nithya Prakash.L
> > > > nithyaprakash86@gmail.com
> > > > +919623320453
> > > >
> > >
> >
>

Re: Using Regular Expression Extractor to extract the "id"

Posted by Deepak Shetty <sh...@gmail.com>.
do you have follow redirects or redirect automatically (change to follow
redirects if not already there)?
Also what are the values you have specified for the other fields
regEx = id=([^&]*)&
Template = $1$
Match NO = 1
Default = NOTFOUND

Also have you tried putting a debug sampler + view results tree listener and
seen what you are extracting (Im assuming from your mail that the URL you
posted the data too finally redirected to this URL)? Did you verify using
view results tree listener that you are indeed being redirected to this URL
(otherwise your ADD might have failed)?

regards
deepak



On Fri, Jun 11, 2010 at 10:32 PM, Nithya Prakash
<ni...@gmail.com>wrote:

> Thanks Deepak
>
> Yea its the URL which is been redirected..... am actually using HTTP fox to
> record the parameters and the checking the values in HTML format... able to
> get the id's but am not able to fetch the exact expression which is to be
> used in regular expression extractor..... i'll try out to find where am
> going wrong... meanwhile is there any possible solution for this issue
> please let me know...
>
>
>
> On Sat, Jun 12, 2010 at 8:15 AM, Deepak Shetty <sh...@gmail.com> wrote:
>
> > >The above url is the path which is coming while i create the user..
> > What do you mean by this statement? Does your application redirect to
> this
> > URL?  Or is this part of the content in the response? Your response field
> > to
> > check is probably wrong since you are checking the URL.
> > Second your expression is too broad. it will capture any number ,
> something
> > like id=([^&]*)& . Also you can use a debug sampler to see what values
> are
> > getting extracted if at all.
> >
> >
> > On Fri, Jun 11, 2010 at 7:11 PM, Nithya Prakash
> > <ni...@gmail.com>wrote:
> >
> > > Hi
> > >
> > > I'm using Jmeter since one month...In learning process.... the scenario
> > is
> > > like this..... I login as Org admin and create an user......As soon i
> > > create
> > > an User in return value it creates an User ID which i'll be using it
> for
> > > further HTTP requests.... The problem am facing is i'm unable to fetch
> > the
> > > "syntax" to be used in the regular expression extractor....
> > >
> > > -----
> > > http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> > > &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode<
> >
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30%0A&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
> > >
> > > -----
> > >
> > > The above url is the path which is coming while i create the user.....
> > The
> > > "id=30" is the Org id......... Now in order to extract the id i use a
> > > regular expression extractor. I make the following settings.....
> > >                            Response Field to check : URL
> > >                            Regular Expression         : (\d+)
> > >
> > > Its not working..... Can anyone tell me a possible solution please ??
> > >
> > > Regards
> > > --
> > > Nithya Prakash.L
> > > nithyaprakash86@gmail.com
> > > +919623320453
> > >
> >
>

Re: Using Regular Expression Extractor to extract the "id"

Posted by Nithya Prakash <ni...@gmail.com>.
Thanks Deepak

Yea its the URL which is been redirected..... am actually using HTTP fox to
record the parameters and the checking the values in HTML format... able to
get the id's but am not able to fetch the exact expression which is to be
used in regular expression extractor..... i'll try out to find where am
going wrong... meanwhile is there any possible solution for this issue
please let me know...



On Sat, Jun 12, 2010 at 8:15 AM, Deepak Shetty <sh...@gmail.com> wrote:

> >The above url is the path which is coming while i create the user..
> What do you mean by this statement? Does your application redirect to this
> URL?  Or is this part of the content in the response? Your response field
> to
> check is probably wrong since you are checking the URL.
> Second your expression is too broad. it will capture any number , something
> like id=([^&]*)& . Also you can use a debug sampler to see what values are
> getting extracted if at all.
>
>
> On Fri, Jun 11, 2010 at 7:11 PM, Nithya Prakash
> <ni...@gmail.com>wrote:
>
> > Hi
> >
> > I'm using Jmeter since one month...In learning process.... the scenario
> is
> > like this..... I login as Org admin and create an user......As soon i
> > create
> > an User in return value it creates an User ID which i'll be using it for
> > further HTTP requests.... The problem am facing is i'm unable to fetch
> the
> > "syntax" to be used in the regular expression extractor....
> >
> > -----
> > http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> > &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode<
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30%0A&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
> >
> > -----
> >
> > The above url is the path which is coming while i create the user.....
> The
> > "id=30" is the Org id......... Now in order to extract the id i use a
> > regular expression extractor. I make the following settings.....
> >                            Response Field to check : URL
> >                            Regular Expression         : (\d+)
> >
> > Its not working..... Can anyone tell me a possible solution please ??
> >
> > Regards
> > --
> > Nithya Prakash.L
> > nithyaprakash86@gmail.com
> > +919623320453
> >
>

Re: Using Regular Expression Extractor to extract the "id"

Posted by Deepak Shetty <sh...@gmail.com>.
>The above url is the path which is coming while i create the user..
What do you mean by this statement? Does your application redirect to this
URL?  Or is this part of the content in the response? Your response field to
check is probably wrong since you are checking the URL.
Second your expression is too broad. it will capture any number , something
like id=([^&]*)& . Also you can use a debug sampler to see what values are
getting extracted if at all.


On Fri, Jun 11, 2010 at 7:11 PM, Nithya Prakash
<ni...@gmail.com>wrote:

> Hi
>
> I'm using Jmeter since one month...In learning process.... the scenario is
> like this..... I login as Org admin and create an user......As soon i
> create
> an User in return value it creates an User ID which i'll be using it for
> further HTTP requests.... The problem am facing is i'm unable to fetch the
> "syntax" to be used in the regular expression extractor....
>
> -----
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode<http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30%0A&_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode>
> -----
>
> The above url is the path which is coming while i create the user..... The
> "id=30" is the Org id......... Now in order to extract the id i use a
> regular expression extractor. I make the following settings.....
>                            Response Field to check : URL
>                            Regular Expression         : (\d+)
>
> Its not working..... Can anyone tell me a possible solution please ??
>
> Regards
> --
> Nithya Prakash.L
> nithyaprakash86@gmail.com
> +919623320453
>

Re: Using Regular Expression Extractor to extract the "id"

Posted by Felix Frank <ff...@mpexnet.de>.
Hi,

I'm not sure I understand your exact problem. The regex extractor that's
applied to the response you posted could use the expression
"editOrgUser\((.*?)\)", without the quotes.

(Yes, I do presume there can be not closing parenthesis in the ID, which
I consider a fair guess).

Cheers
 - Felix

On 06/17/2010 08:19 AM, Nithya Prakash wrote:
> " <img src='/Web/images/common/mainmenu_act.gif' class='frm-image' style=''
> onmouseover='showShortcut(event, this,
> [{name:"View",type:"LINK",action:"showOrgUserView(*21*
> )",image:"/images/common/view.png"},{name:"Manage",type:"LINK",action:"editOrgUser(
> *21*)",image:"/images/common/edit.png"}])'/> "
> 
> My question, Is this the correct syntax which i have to take?? if this is
> correct what type of expression we have to use to extract the user is(in
> this case its *21*)
> 
> kindly help me out please.
> 
> 
> 
> Thanks & Regards
> Nithya Prakash
> 

-- 
MPeX.net GmbH / Werner-Voß-Damm 62 / D-12101 Berlin / Germany
MPeXnetworks / www.mpexnetworks.de
Tel: ++49-30-78097 180 / Fax: ++49-30-78097 181

Sitz, Registergericht: Berlin, Amtsgericht Charlottenburg, HRB 76688
Geschäftsführer: Lars Bräuer, Gregor Lawatscheck

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re: Using Regular Expression Extractor to extract the "id"

Posted by Nithya Prakash <ni...@gmail.com>.
Hi

I have another scenaio for the same User ID.....

1. I Create an Organization. An org id and user id is generated
automatically.

2. I sign in as Organization Admin.

3. I have to edit the access profile of the org admin. Am unable to extract
the Org admin id and use it in my Reg exp Extractor.

When i view the user list page i can see the user id in the source code. its


" <img src='/Web/images/common/mainmenu_act.gif' class='frm-image' style=''
onmouseover='showShortcut(event, this,
[{name:"View",type:"LINK",action:"showOrgUserView(*21*
)",image:"/images/common/view.png"},{name:"Manage",type:"LINK",action:"editOrgUser(
*21*)",image:"/images/common/edit.png"}])'/> "

My question, Is this the correct syntax which i have to take?? if this is
correct what type of expression we have to use to extract the user is(in
this case its *21*)

kindly help me out please.



Thanks & Regards
Nithya Prakash

Re: Using Regular Expression Extractor to extract the "id"

Posted by Nithya Prakash <ni...@gmail.com>.
Hi

Its fails for the whole expression...I dunno whether am going wrong in
writing the expression.
the scenario is like this...

Am adding a team member to my team. so when i add another user to this team
i get the following syntax in my source code         "
[{id:"94",displayName:"sa,sa"},{id:"134",displayName:"rrr,sss"}] "....

When i take this syntax which Regular Expression i have to use??

Thanks & Regards
Nithya

On Wed, Jun 16, 2010 at 10:53 AM, Nagusoft <na...@gmail.com> wrote:

>
> Hi,
> Can u specify where it fails...whether in (\d+) or  in extracting (.+?)   .
>
> Nithya Prakash wrote:
> >
> > Hello People,
> >
> > Thanks for your solutions. Am finding difficulty in using the Regular
> > Expression Extraction for the following syntax
> >
> >                       "
> > [{id:"94",displayName:"sa,sa"},{id:"134",displayName:"rrr,sss"}] "
> >
> > Which expression exactly we should in order to get the required output.
> > I tried using
> >
> >                         "
> > [{id:"(\d+)",displayName:"(.+?)"},{id:"(\d+)",displayName:"(.+?)"}] "
> >
> > I'm not able to get the required output. Could you held me out please.
> >
> > Thanks & Regards
> > --
> > Nithya Prakash.L
> > nithyaprakash86@gmail.com
> > +919623320453
> >
> >
>
> --
> View this message in context:
> http://old.nabble.com/Using-Regular-Expression-Extractor-to-extract-the-%22id%22-tp28861851p28898958.html
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>


-- 
Nithya Prakash.L
nithyaprakash86@gmail.com
+919623320453

Re: Using Regular Expression Extractor to extract the "id"

Posted by Nagusoft <na...@gmail.com>.
Hi, 
Can u specify where it fails...whether in (\d+) or  in extracting (.+?)   .

Nithya Prakash wrote:
> 
> Hello People,
> 
> Thanks for your solutions. Am finding difficulty in using the Regular
> Expression Extraction for the following syntax
> 
>                       "
> [{id:"94",displayName:"sa,sa"},{id:"134",displayName:"rrr,sss"}] "
> 
> Which expression exactly we should in order to get the required output.
> I tried using
> 
>                         "
> [{id:"(\d+)",displayName:"(.+?)"},{id:"(\d+)",displayName:"(.+?)"}] "
> 
> I'm not able to get the required output. Could you held me out please.
> 
> Thanks & Regards
> -- 
> Nithya Prakash.L
> nithyaprakash86@gmail.com
> +919623320453
> 
> 

-- 
View this message in context: http://old.nabble.com/Using-Regular-Expression-Extractor-to-extract-the-%22id%22-tp28861851p28898958.html
Sent from the JMeter - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


Re: Using Regular Expression Extractor to extract the "id"

Posted by Nithya Prakash <ni...@gmail.com>.
Hello People,

Thanks for your solutions. Am finding difficulty in using the Regular
Expression Extraction for the following syntax

                      "
[{id:"94",displayName:"sa,sa"},{id:"134",displayName:"rrr,sss"}] "

Which expression exactly we should in order to get the required output.
I tried using

                        "
[{id:"(\d+)",displayName:"(.+?)"},{id:"(\d+)",displayName:"(.+?)"}] "

I'm not able to get the required output. Could you held me out please.

Thanks & Regards
-- 
Nithya Prakash.L
nithyaprakash86@gmail.com
+919623320453

Re: Using Regular Expression Extractor to extract the "id"

Posted by Nagusoft <na...@gmail.com>.
Hi ,

Try ID=([0-9]+)

Nithya Prakash wrote:
> 
> Hi
> 
> I'm using Jmeter since one month...In learning process.... the scenario is
> like this..... I login as Org admin and create an user......As soon i
> create
> an User in return value it creates an User ID which i'll be using it for
> further HTTP requests.... The problem am facing is i'm unable to fetch the
> "syntax" to be used in the regular expression extractor....
> 
> -----
> http://172.18.10.1:3128/Web/performAction?view=orgManageUser&id=30
> &_tabId_orgUserGrid=orgUserGrid_Users&showOrgUserMode=addMode
> -----
> 
> The above url is the path which is coming while i create the user..... The
> "id=30" is the Org id......... Now in order to extract the id i use a
> regular expression extractor. I make the following settings.....
>                             Response Field to check : URL
>                             Regular Expression         : (\d+)
> 
> Its not working..... Can anyone tell me a possible solution please ??
> 
> Regards
> -- 
> Nithya Prakash.L
> nithyaprakash86@gmail.com
> +919623320453
> 
> 

-- 
View this message in context: http://old.nabble.com/Using-Regular-Expression-Extractor-to-extract-the-%22id%22-tp28861851p28876031.html
Sent from the JMeter - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org