-2

I want to extract set of digits from a string in loadrunner. Eg: The order id 2385757 is generated. We need 2385757 as an output. The string can change..but there will be only 1 set of numbers which we need. Can you please help me in getting that?

Aliaksandr Belik
  • 12,725
  • 6
  • 64
  • 90
  • Welcome to Stack Overflow! Please take the [tour](http://stackoverflow.com/tour) and read [How to Ask](http://stackoverflow.com/help/how-to-ask) to learn what we expect from questions. Please be aware that we do not provide _from-scratch_ coding service here. :-) – Sourav Ghosh Mar 19 '15 at 11:49
  • This question appears to be off-topic because it does not display any effort from OP's side till time. – Sourav Ghosh Mar 19 '15 at 11:49

1 Answers1

1

Correlation is your path to extract data from information returned from the server. If you need to capture a larger string and then cut it up then you can take advantage of all of the standard C language string manipulation functions.

James Pulley
  • 5,606
  • 1
  • 14
  • 14