which expression should i use to extract the numeric value from the following line of code in the response of the recording. please help
URL = URL + "documentId="+78556; If you are finding an integer value it is always preferred to use "(\d)" i.e. Integer type regex. Though (.+?) will also match but if chances of matching other similar regex are possible. To avoid such misfindings use below regex.
documentId=\"\+(\d+); Rest values in Regular expression extractor should be same.