Quantcast
Channel: All LoadRunner Practitioners Forum posts
Viewing all articles
Browse latest Browse all 12134

Re: how to find value without RB in web_reg_save_param

$
0
0

I can think of two options

 

  1. You can use non visible control characters such as \r,\n,\t, .... as left or right boundary conditions.   

So your example would be as follows:

 

web_reg_save_param("free_list","LB=<PRE>Number of connections in free list: ","RB=\n",
 LAST);

 Or, if the number of connections is always 2 characters, you could also try using SaveLen, the following example would save the next two characters after the requested string.

 

web_reg_save_param("free_list","LB=<PRE>Number of connections in free list: ","RB=","SaveLen=2",
 LAST);

 

HTH, 

./Darren 


Viewing all articles
Browse latest Browse all 12134

Trending Articles