I have this long payload and I need to return a serial number from it but it has many serial numbers and I only want to return the serial number after a certain tag. Here is the payload:
USB:
USB 2.0 SuperSpeed Bus:
Host Controller Location: Building
Internal Card Reader:
Product ID: 0x8406
Serial Number: 000000000820 //i dont want this
Building: Yes
USB 2.0 Bus:
PCI ID: 0x8c31
iPhone:
Vendor ID: 0x05ac (skyway Inc.)
Version: 7.02
Serial Number: wea0aa752ada7722ac92575e98z2e89c691f4282 //i want this
Speed: Up to 492 Mb/sec
REC ID: 0x11100000 / 1
skyway Internal Keyboard / Trackpad:
Product ID: 0x0162
Recog ID: 0x05ac (skyway Inc.)
Location ID: 0x14c00000 / 3
Current Available (mA): 500
Built-In: Yes
How can I build a regular expression that will return to me only the following:
wea0aa752ada7722ac92575e98z2e89c691f4282
I tried doing the following but that will return all expressions that start with serial number:
Serial Number: [0-9]
I just want the serial number that shows up after the iPhone title.