I have a long if/else statement to solve this problem currently, but I feel like there must be a way to solve this with string manipulation instead - let me explain what is happeneing.
When I run this in the debugger, I get results of IPs listed on new lines as seen here
q: addresses of adapters of network
A: 172.19.48.1
A: 172.16.200.123
T: 15.072 ms
However, putting this in the SSA returns these multiple IPs on the same line. as 172.19.48.1172.16.200.123
I cannot do something like “address of adapter 1 of network” because this will show home networks instead of the VPN IP address given by our VPN client. There are also devs and others on my team who have multiple network adapters showing up that differ from device to deivce.
So my question - within the Self-Service App, how can I return the results on new lines? Do I need to do some line code within the HTML for this or can I modify the relevance to return newlines after each IP is returned?
Thanks!