Python dynamic strings equivalent in ahk? Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
sinbad
Posts: 40
Joined: 01 Mar 2018, 09:32

Python dynamic strings equivalent in ahk?

11 Feb 2019, 10:18

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)
swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

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

11 Feb 2019, 11:03

Code: Select all

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

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: doodles333, onurcoban and 385 guests