slash commands that take an input value can often be executed two ways...
/do_something_with foo
or
do_something_with='foo'
You might be able to use the later with a variable containing the concatenation.
foo='something' ## 'somethingelsewithspaces'
do_something_with=foo
|