Page 1 of 1

Python dynamic strings equivalent in ahk?

Posted: 11 Feb 2019, 10:18
by sinbad
Hello,

Wondering how I can do this in ahk?

Code: Select all

VALUES_URL = API_BASE_URL + '/%s/values/%s'

url = VALUES_URL % (self.id, range)

Re: Python dynamic strings equivalent in ahk?  Topic is solved

Posted: 11 Feb 2019, 11:03
by swagfag

Code: Select all

VALUES_URL := API_BASE_URL "/{}/values/{}"
url := Format(VALUES_URL, self.id, range)