The result is:
ReadRegStr $R0 "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ProxyServer
I want to read between "http=" and the next ";" and parse the data inbetween. Some times there may be more or less fields like ftp or socks or gopher, etc. Sometimes the string may not have http in there at all. if "http=" is all that is there, there may not be a ";".ftp=ftpserver:serverport;http=httpserver:serverport;socks=sockserver:serverport
What is the best way of extracting httpserver and the corresponding serverport ? (it isn't actually "httpserver:serverport", obviously)
I am doing this to read the proxy configuration settings from a system.