-
regex help
i wanted to extract string lists from large string without using many loops .can you please help me how to extract below string lists from provided string using regex.
input:
timezone=america/boston&firmwareversion=1.0&clientversion=1&LLID=45 557&id=2345656677&interfaceDeviceinfo=123456777888 &timezone=america/boston&firmwareversion=1.0&clientversion=1&LLID=45 557&id=2345656677&interfaceDeviceinfo=123456777888 &timezone=america/boston&firmwareversion=1.0&clientversion=1&LLID=45 557&id=2345656677&interfaceDeviceinfo=123456777888
ouput:
timezone stringlist
firmwareversion stringlist
clientversion stringlist
LLID stringlist
id stringlist
interfaceDeviceinfo stringlist
-
Re: regex help
First ask yourself what patterns exist that you can use to help you extract the information. If there are no regular patterns, then regular expressions will not help you. Next you'll want to specify what you mean exactly by "stringlist". Next show us what you've tried or tell us what you'd like to try but you may be confused on.