gr-concat-string Concatenates string array by passing as divider text, initial and final. Examples: concatString( ['One', 'Two', 'three'], ',', 'Numbers(', ');' ); \\ Numbers(One,Two,three); concatString(['One', 'Two', 'three'], ' - ', '> ', ' <'); \\ > One - Two - three <