Squeak
May 26, 2020Cirrus
Parse username from server response
Hi, I´m trying to parse a username from a response that I´m receiving from a external server. The complete response from the server· HTTP/1.1 200 OK Cache-Control: private Content-Type: appli...
- May 26, 2020
Hi Squeak,
You can use string map to strip the double quotes.
set strip_quotes [string map {\" {}} $parse_user]
Kind regards
Ben