I have a AutoHotkey script with:
IfInString, pp_text, %A_Space%
{
pp_text := %pp_text%
}
So in case %pp_text% contains a space I want to add " at the beginning and end
Example: pp_text = Hello World should then become pp_text = "Hello World"
How can I do this?