Those who use, know, how useful automation tool AHK is..
The AHK has function StringSplit or StrSplit() which does very fast split string into array elements.
This is very useful if you want to manipulate some parts of well formed string, but unfortunately it appears there is no way around!
I spend time searching and there was a mess of samples with old syntax which just does not work.
All I wanted is
Final_Concatenated_String := StrConcat(My_Array_Of_Strings, "\")
which obviously does not work!
So, simple question: how to concatenate simple array of strings?