Hi Robert!
I just tried this, and unfortunately, it does not work in my case 
Hopefully the code below will provide some context for what I am trying to achieve:
function style1() {
run("Smooth");
run("Auto Local Threshold...", autloc3);
run("Watershed");
run("Analyze Particles...", anpart3);
}
autloc3 = "method=" + autometh3 + " radius=" + autorad3 + " parameter_1=" + autop1c + " parameter_2=" + autop2c + " white";
anpart3 = "size=" + anpartsize3 + "-Infinity clear summarize add";
In the code above, autometh5, autorad5, and so on are user inputted values, and I was hoping to adjust the function according to the user’s input. However, the entire variable must be a string type in order for it to work. For example, the following works perfectly when I hard code the function:
run("Smooth");
run("Auto Local Threshold...", "method=Bernsen radius=15 parameter_1=40 parameter_2=0 white");
run("Watershed");
run("Analyze Particles...", "size=10-Infinity clear summarize add");
If you look at the Auto Local Threshold line, you can see that the entire section after that is a string, so I am hoping to convert everything to a string in order to run this function, and for some reason adding ""
does not work 
Again, I appreciate all the help and time!