Hello georgiboy. Thanks or that, it was helpful. However, I do not get the swapping part. The problem is that "WordToFind" and "ReplacementWord" are not constant.


For instance, I'll have to replace lines like the following:


constantFunction("variableArg_1", variableNoun_1, consant, variableNumber_1) will become ==> constantFunction("variableArg_1", variableNumber_1, consant, variableNoun_1)

constantFunction("variableArg_2", variableNoun_2, consant, variableNumber_2) will become ==> constantFunction("variableArg_2", variableNumber_2, consant, variableNoun_2)


So I cannot just replace one word for another. That is why I need to construct one string chain from another by swapping one Function argument for the other (which will be different in each instance).


I may be asking for too much, but the fact is that I don't know if this is a tedious issue or not, so thanks again for what you said before!!