I have been playing around today with sockets, just to build up some experience with them before I move on to something else so I set up a xml document on my web server with a few lines of code. Then socket than retrieves the information from within that document and displays them like such.
(Just some random values Lol.)Cigarettes: Newport
Music: Electro/House
Drink: Jager
What I am trying to do is make the values like Newport, Electro/House, & Jager align with each other. So it would look a more organized I guess you would say. Kinda like this

I tried inserting extra spaces between the static text of the echo and the variable(which would be newport, electro/house, & Jager) but that doesn't seem to work much.
Can anyone suggest to me a possible way to achieve this? I would greatly appreciate it.
Also if it helps this is basically what I am using for the echo.
if ($regex(%temp,/<cigarettes>(.*)</cigarettes>/)) {
echo -a Cigarettes: $regml(1)
}