For example I have this URL like
http://www.example.com/search?text=soda&show=Page&layoutStatus=grid&categoryCode=&q=soda%3Arelevance&terms=%3ACalories%3A0+Cal
I need to fetch the values:
%3ACalories%3A0+Cal
For example I have this URL like
http://www.example.com/search?text=soda&show=Page&layoutStatus=grid&categoryCode=&q=soda%3Arelevance&terms=%3ACalories%3A0+Cal
I need to fetch the values:
%3ACalories%3A0+Cal
I just Create a regex repression like: href="/product(.+?).uts\?swatchName=(.+?)" where (.+?) is appearing 2 times for a 2 variables. and pass parameter like ${value_g1} and ${value_g2} in the url. resolved issue.